-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
46 lines (40 loc) · 1.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[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 = "0.2.89"
wasm-bindgen-futures = "0.4.39"
[dev-dependencies]
tauri-sys = {path = ".", features = ["all"]}
wasm-bindgen-test = "0.3.42"
[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"]