-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
72 lines (65 loc) · 1.67 KB
/
Cargo.toml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "rim"
version = "0.5.2"
edition = "2021"
description = "An interactive Rust installation manager"
rust-version = "1.80.0" # Dominated by 'std::sync::LazyLock'
[features]
default = []
no-web = []
gui = []
[[bin]]
name = "rim-cli"
path = "src/bin/rim_cli.rs"
[workspace]
members = ["rim_gui/src-tauri", "rim_dev"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
anyhow = "1"
cfg-if = "1"
url = { version = "2", features = ["serde"] }
toml = "0.8.15"
tokio = { version = "1", features = ["time", "rt-multi-thread", "macros"] }
tempfile = "3"
indexmap = { version = "2.5", features = ["serde"] }
reqwest = { version = "0.12", features = ["stream", "native-tls-vendored", "blocking"] }
rust-i18n = "3"
log = "0.4"
fern = { version = "0.7", features = ["colored"] }
tar = "0.4"
xz2 = "0.1"
zip = "2"
[dependencies]
anyhow.workspace = true
cfg-if.workspace = true
clap = { version = "4", features = ["derive"] }
dirs = "5.0.1"
indicatif = "0.17"
serde.workspace = true
url.workspace = true
libc = "0.2"
toml.workspace = true
tempfile.workspace = true
sevenz-rust = "0.6.1"
tar.workspace = true
xz2.workspace = true
flate2 = "1"
env_proxy = "0.4.1"
indexmap.workspace = true
rust-i18n.workspace = true
sys-locale = "0.3.1"
log.workspace = true
fern.workspace = true
chrono = { version = "0.4.38", features = ["serde"] }
semver = "1.0.23"
self-replace = "1"
os_pipe = "1.2.1"
reqwest.workspace = true
tokio.workspace = true
zip.workspace = true
[dev-dependencies]
rim-test-support = { version = "0.1.0", path = "rim_test/rim-test-support" }
[target."cfg(windows)".dependencies]
winreg = "0.52.0"
winapi = { version = "0.3", features = ["winuser", "winbase"] }
cc = "1"