46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
edition = "2021"
|
|
name = "tauri-sys"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = { version = "0.3.29", optional = true }
|
|
js-sys = "0.3.66"
|
|
log = "0.4.20"
|
|
semver = {version = "1.0.20", optional = true, features = ["serde"]}
|
|
serde = {version = "1.0.193", features = ["derive"]}
|
|
serde-wasm-bindgen = "0.6.3"
|
|
serde_repr = "0.1.17"
|
|
thiserror = "1.0.50"
|
|
url = {version = "2.5.0", optional = true, features = ["serde"]}
|
|
wasm-bindgen = {version = "0.2.89", features = ["serde_json"]}
|
|
wasm-bindgen-futures = "0.4.39"
|
|
|
|
[dev-dependencies]
|
|
tauri-sys = {path = ".", features = ["all"]}
|
|
wasm-bindgen-test = "0.3.39"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
all = ["app", "clipboard", "event", "fs", "mocks", "tauri", "window", "process", "dialog", "os", "notification", "path", "updater", "global_shortcut"]
|
|
app = ["dep:semver"]
|
|
clipboard = []
|
|
dialog = []
|
|
event = ["dep:futures"]
|
|
fs = []
|
|
global_shortcut = []
|
|
mocks = []
|
|
notification = []
|
|
os = []
|
|
path = []
|
|
process = []
|
|
tauri = ["dep:url"]
|
|
updater = ["dep:futures", "event"]
|
|
window = ["dep:futures", "event"]
|
|
|
|
[workspace]
|
|
members = ["examples/test", "examples/test/src-tauri"]
|