-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.02 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
[package]
name = "gitclaw"
version = "1.0.0"
edition = "2021"
[lib]
name = "gitclaw"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.4", features = ["derive", "env"] }
clap_complete = "4.4"
tokio = { version = "1.32", features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tar = "0.4"
flate2 = "1.0"
bzip2 = "0.4"
xz2 = "0.1"
zstd = "0.13"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
anyhow = "1.0"
thiserror = "1.0"
color-eyre = { version = "0.6", default-features = false }
indicatif = "0.17"
dirs = "5.0"
tempfile = "3.8"
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
walkdir = "2.4"
futures = "0.3"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
semver = "1.0"
sha2 = "0.10"
md5 = "0.7"
colored = "2.0"
rand = "0.8"
[dev-dependencies]
assert_cmd = "2.0"