-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (66 loc) · 2.15 KB
/
Cargo.toml
File metadata and controls
71 lines (66 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "utoo-pm"
version = "0.0.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "utoo"
path = "src/main.rs"
[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
atty = "0.2"
base64 = "0.22"
bytes = "1.11.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { workspace = true }
clap_complete = "4"
colored = "2.1"
dashmap = "6.1.0"
deno_semver = "0.7"
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
dirs = "4.0"
flate2 = "1.0"
futures = { workspace = true }
glob = "0.3.1"
globset = "0.4"
ignore = "0.4"
indicatif = "0.17.8"
libc = "0.2"
libdeflater = "1.25"
once_cell = "1.19"
open = "5"
owo-colors = { workspace = true }
pathdiff = { workspace = true }
petgraph = "0.6"
rayon = { workspace = true }
regex = "1.10"
reqwest = { version = "0.12", default-features = false, features = [
"gzip",
"hickory-dns",
"http2",
"json",
"rustls-tls",
"stream",
] }
serde = { workspace = true }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_yaml = { workspace = true }
sha1 = { workspace = true }
sha2 = { workspace = true }
strum = { workspace = true }
tar = "0.4"
tempfile = "3.15.0"
term_size = "0.3"
tokio-fs-ext = { workspace = true }
tokio-retry = "0.3"
tokio-util = { version = "0.7" }
toml = { workspace = true }
tracing = { workspace = true }
tracing-appender = "0.2"
tracing-subscriber = { workspace = true }
utoo-ruborist = { path = "../ruborist", features = ["http-tarball", "native-git"] }
[dev-dependencies]
mockito = "1.7.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = ["full"] }