2024-01-23 03:24:15 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-plugin"
|
2024-02-21 18:00:32 +03:00
|
|
|
version = "2.0.0-beta.3"
|
2024-02-03 18:34:45 +03:00
|
|
|
description = "Build script and runtime Tauri plugin definitions"
|
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 }
|
|
|
|
|
2024-02-03 16:59:09 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = [ "build", "runtime" ]
|
|
|
|
rustc-args = [ "--cfg", "docsrs" ]
|
|
|
|
rustdoc-args = [ "--cfg", "docsrs" ]
|
|
|
|
|
2024-01-23 03:24:15 +03:00
|
|
|
[features]
|
|
|
|
build = [
|
2024-02-03 14:48:57 +03:00
|
|
|
"dep:anyhow",
|
2024-01-23 03:24:15 +03:00
|
|
|
"dep:serde",
|
|
|
|
"dep:serde_json",
|
|
|
|
"dep:glob",
|
|
|
|
"dep:toml",
|
2024-02-03 14:48:57 +03:00
|
|
|
"dep:plist",
|
2024-02-03 16:59:09 +03:00
|
|
|
"dep:walkdir"
|
2024-01-23 03:24:15 +03:00
|
|
|
]
|
2024-02-03 16:59:09 +03:00
|
|
|
runtime = [ ]
|
2024-01-23 03:24:15 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-03 14:48:57 +03:00
|
|
|
anyhow = { version = "1", optional = true }
|
2024-01-23 03:24:15 +03:00
|
|
|
serde = { version = "1", optional = true }
|
2024-02-21 18:00:32 +03:00
|
|
|
tauri-utils = { version = "2.0.0-beta.3", default-features = false, path = "../tauri-utils" }
|
2024-01-23 03:24:15 +03:00
|
|
|
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-02-03 14:48:57 +03:00
|
|
|
walkdir = { version = "1", optional = true }
|
|
|
|
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
|
|
plist = { version = "1", optional = true }
|