-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
52 lines (50 loc) · 1.43 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
[workspace.package]
authors = ["Dave Rolsky <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/houseabsolute/ubi"
version = "0.4.0"
[workspace]
members = ["ubi", "ubi-cli"]
resolver = "2"
[workspace.dependencies]
anyhow = "1.0.95"
async-trait = "0.1.83"
binstall-tar = "0.4.42"
bzip2 = "0.5.0"
clap = { version = "4.5.23", features = ["wrap_help"] }
document-features = "0.2"
# Used in some test code which can't use test_log.
env_logger = "0.11.6"
fern = { version = "0.7.1", features = ["colored"] }
flate2 = "1.0.35"
itertools = "0.13.0"
lazy-regex = "3.3.0"
log = "0.4.22"
mockito = "1.6.1"
platforms = "3.5.0"
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false, features = ["gzip", "json"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
serial_test = "3.2.0"
strum = { version = "0.26.3", features = ["derive"] }
tempfile = "3.14.0"
test-case = "3.3.1"
test-log = "0.2.16"
thiserror = "2.0.9"
tokio = { version = "1.42.0", default-features = false, features = ["macros", "rt"] }
url = { version = "2.5.4", features = ["serde"] }
which = "7.0.1"
xz2 = "0.1.7"
# This disables all the features that require C compilation, which greatly
# simplifies cross-platform builds.
zip = { version = "2.2.2", default-features = false, features = [
"aes-crypto",
"bzip2",
"deflate",
"deflate64",
"lzma",
"zstd",
] }