-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 617 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 617 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
[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.49.0" }
implicit-clone = { version = "0.6.0" }