-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.38 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (45 loc) · 1.38 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
43
44
45
46
47
48
49
[workspace]
resolver = "2"
members = [
"crates/versi",
"crates/versi-backend",
"crates/versi-core",
"crates/versi-asdf",
"crates/versi-fnm",
"crates/versi-nvm",
"crates/versi-volta",
"crates/versi-shell",
"crates/versi-platform",
]
[workspace.package]
version = "0.12.4"
edition = "2024"
license = "GPL-3.0-only"
repository = "https://github.com/almeidx/versi"
[workspace.dependencies]
tokio = { version = "1.52.3", default-features = false, features = ["rt-multi-thread", "macros", "process", "io-util", "fs", "time", "sync"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.150"
thiserror = "2.0.18"
chrono = { version = "0.4.45", default-features = false, features = ["std", "now", "serde"] }
dirs = "6.0"
which = "8.0.4"
reqwest = { version = "0.13.4", default-features = false, features = ["rustls", "json", "stream"] }
open = "5.3.5"
async-trait = "0.1.89"
log = "0.4.32"
simplelog = { version = "0.12.2", default-features = false, features = ["termcolor"] }
zip = { version = "8.6.0", default-features = false, features = ["deflate"] }
tempfile = "3.27.0"
self-replace = "1.5"
futures-util = "0.3.32"
tokio-util = { version = "0.7.18", default-features = false, features = ["rt"] }
sha2 = "0.11.0"
semver = "1.0.28"
base64 = "0.22.1"
[workspace.lints.clippy]
pedantic = "warn"
[profile.release]
lto = true
codegen-units = 1
strip = true