-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 961 Bytes
/
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
[package]
name = "blrs-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
ansi_term = "0.12.1"
async-std = "1.13.0"
# blrs = { path = "../blrs", features = ["all"] }
blrs = { features = ["all"], git = "https://github.com/zeptofine/blrs" }
cargo-util = "0.2.14"
chrono = "0.4.38"
clap = { version = "4.5.17", features = ["derive"] }
ctrlc = "3.4.5"
env_logger = "0.11.5"
figment = "0.10.19"
flate2 = "1.0.34"
futures = "0.3.31"
indicatif = { version = "0.17.8", features = ["rayon", "tokio", "futures"] }
inquire = "0.7.5"
log = "0.4.22"
reqwest = "0.12.7"
semver = "1.0.23"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
tar = "0.4.42"
termtree = "0.5.1"
thiserror = "1.0.64"
tokio = { version = "1.40.0", features = ["full"] }
toml = "0.8.19"
trash = "5.1.1"
uuid = { version = "1.10.0", features = ["v4", "fast-rng"] }
xz = "0.1.0"
zip = "2.2.0"
[profile.release]
lto = "fat"
[[bin]]
name = "blrs"
path = "src/main.rs"