-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 785 Bytes
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
[workspace]
members = [
"packages/*",
"tools/*",
"examples/*",
]
exclude = ["examples/.cargo"]
default-members = [
"packages/*",
]
resolver = "3"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
opt-level = "z"
[profile.bench]
lto = true
codegen-units = 1
opt-level = 3
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
"cfg(documenting)",
"cfg(verbose_tests)",
"cfg(yew_lints)",
"cfg(nightly_yew)",
"cfg(wasm_bindgen_unstable_test_coverage)"
]}
[workspace.dependencies]
tokio = { version = "1.48.0" }
implicit-clone = { version = "0.6.0" }
proc-macro2 = "1"
quote = "1"
trybuild = { version = "1.0.114" }
syn = { version = "2" }
clap = { version = "4", features = ["derive"] }
bytes = { version = "1.11.0" }