-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1.06 KB
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
[workspace]
members = [
"packages/cargo_tools",
"packages/cargo_tools_vscode",
"packages/iced_viewless",
"xtask",
]
default-members = [
"packages/cargo_tools",
"packages/cargo_tools_vscode",
"packages/iced_viewless",
]
resolver = "2"
[workspace.dependencies]
cargo_tools = { path = "packages/cargo_tools" }
cargo_tools_vscode = { path = "packages/cargo_tools_vscode" }
iced_viewless = { path = "packages/iced_viewless", default-features = false }
futures = "0.3.31"
cargo_metadata = "0.23.1"
wasm-bindgen = "0.2.106"
wasm-bindgen-futures = "0.4.56"
wasm-bindgen-test = "0.3.56"
serde = { version = "1.0", default-features = false }
serde_json = "1.0"
serde-wasm-bindgen = "0.6.0"
thiserror = { version = "2.0.17", default-features = false }
iced_futures = "0.14.0"
iced_runtime = "0.14.0"
tokio = "1.49.0"
log = "0.4.29"
tracing = { version = "0.1.43", default-features = false }
tracing-test = "0.2.5"
toml = { version = "0.9.8", features = [
"parse",
"serde",
], default-features = false }
itertools = "0.14.0"
anyhow = "1.0.102"
assert2 = "0.4.0"