Add Metadata for Plugin Compatibility (#1836)

Co-authored-by: Tillmann <112912081+tillmann-crabnebula@users.noreply.github.com>
Co-authored-by: Tillmann <28728469+tweidinger@users.noreply.github.com>
This commit is contained in:
Tillmann
2024-09-26 21:21:25 +09:00
committed by GitHub
parent fc9b189e83
commit aabc4d3a24
30 changed files with 218 additions and 0 deletions
+11
View File
@@ -11,6 +11,17 @@ links = "tauri-plugin-PLUGIN_NAME"
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
# Platforms supported by the plugin
# Support levels are "full", "partial", "none", "unknown"
# Details of the support level are left to plugin maintainer
[package.metadata.platforms]
windows = { level = "unknown", notes = "" }
linux = { level = "unknown", notes = "" }
macos = { level = "unknown", notes = "" }
android = { level = "unknown", notes = "" }
ios = { level = "unknown", notes = "" }
[build-dependencies]
tauri-plugin = { workspace = true, features = ["build"] }