2024-01-23 03:24:15 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-plugin"
|
2024-01-23 19:19:51 +03:00
|
|
|
version = "1.0.0"
|
2024-01-23 03:24:15 +03:00
|
|
|
authors = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
|
|
|
categories = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
build = [
|
|
|
|
"dep:serde",
|
|
|
|
"dep:cargo_metadata",
|
|
|
|
"dep:serde_json",
|
|
|
|
"dep:glob",
|
|
|
|
"dep:toml",
|
|
|
|
]
|
|
|
|
runtime = []
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1", optional = true }
|
|
|
|
cargo_metadata = { version = "0.18", optional = true }
|
|
|
|
tauri = { version = "2.0.0-alpha.20", default-features = false, path = "../tauri" }
|
|
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
glob = { version = "0.3", optional = true }
|
|
|
|
toml = { version = "0.8", optional = true }
|
2024-02-01 15:16:10 +03:00
|
|
|
schemars = { version = "0.8", features = [ "preserve_order" ] }
|
2024-01-23 03:24:15 +03:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["build", "runtime"]
|
|
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|