-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (32 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
32 lines (32 loc) · 703 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
[workspace]
resolver = "1"
members = [
"uvm",
"uvm_install_graph",
"uvm_live_platform",
"uvm_move_dir",
"uvm_install",
"unity-version",
"unity-hub",
"unity-types",
"uvm_detect"
, "uvm_gc"]
[workspace.dependencies]
reqwest = { version = "0.12.23", default-features = false, features = ["rustls-tls-native-roots", "http2", "charset", "blocking", "json"] }
serde = { version = "1.0.218", features = ["derive"] }
itertools = "0.14.0"
cfg-if = "1.0.0"
console = "0.16.1"
dirs-2 = "3.0.1"
ssri = "9.2.0"
log = "0.4.26"
thiserror = "2.0.16"
anyhow = "1.0.96"
semver = "1.0.27"
serde_json = "1.0.139"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"