-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (47 loc) · 1.24 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
[package]
authors = ["Ian O'Connell <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
name = "rules_minidock_tools"
version = "0.1.0"
[[bin]]
name = "pusher-app"
path = "app/pusher_app.rs"
[[bin]]
name = "puller-app"
path = "app/puller_app.rs"
[[bin]]
name = "merge-app"
path = "app/merge_app.rs"
[dependencies]
anyhow = "1.0.95"
async-recursion = "1.0.5"
async-stream = "0.3.6"
async-trait = "0.1.84"
base64 = "0.21.7"
bytes = "1.8.0"
clap = { version = "4.5.23", features = ["derive", "env"] }
console = "0.15.10"
flate2 = "1.0.35"
futures = "0.3.31"
futures-core = "0.3.30"
http = "0.2.11"
hyper = { version = "0.14.27", features = ["full"] }
hyper-rustls = "0.23.2"
indicatif = { git = "https://github.com/console-rs/indicatif.git", rev = "2ca9d019fbb4b0aed11bfad984daef064998f5ef" }
regex = "1.11.1"
rustls = "0.20.8"
serde = { version = "1.0.217", features = ["derive", "alloc"] }
serde_json = { version = "1.0.134", features = ["alloc"] }
sha2 = "0.10.8"
tempfile = "3.10.1"
thiserror = "1.0.68"
tokio = { version = "1.41.1", features = ["full"] }
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["io"] }
tracing = "0.1.41"
[lib]
name = "rules_minidock_tools"
path = "src/lib.rs"
[dev-dependencies]
tempfile = "3.10.1"