mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
* chore: promote to v2 stable - deletes all RC change files - adds a new change file to promote all packages to v2 stable - manually fix the tauri-driver, tauri-macos-sign, tauri-bundler versions so the next covector bump will move them to 2.0.0 - manually patch the metadata-v2.json file so the next covector update will mark all packages as 2.0.0 * ignore audit vuln without fixes * bump msrv to 1.78 * run covector version * fix sync lockfile covector * #[allow(clippy::manual_inspect)]
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "tauri-plugin"
|
|
version = "2.0.0"
|
|
description = "Build script and runtime Tauri plugin definitions"
|
|
authors.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["build", "runtime"]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
build = [
|
|
"dep:anyhow",
|
|
"dep:serde",
|
|
"dep:serde_json",
|
|
"dep:glob",
|
|
"dep:toml",
|
|
"dep:plist",
|
|
"dep:walkdir",
|
|
]
|
|
runtime = []
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1", optional = true }
|
|
serde = { version = "1", optional = true }
|
|
tauri-utils = { version = "2.0.0", default-features = false, features = [
|
|
"build",
|
|
], path = "../tauri-utils" }
|
|
serde_json = { version = "1", optional = true }
|
|
glob = { version = "0.3", optional = true }
|
|
toml = { version = "0.8", optional = true }
|
|
schemars = { version = "0.8.18", features = ["preserve_order"] }
|
|
walkdir = { version = "2", optional = true }
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
plist = { version = "1", optional = true }
|