forked from web3infra-foundation/libra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (77 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
81 lines (77 loc) · 1.67 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
72
73
74
75
76
77
78
79
80
81
[package]
name = "libra"
version = "0.1.0"
edition = "2024"
[features]
default = []
[dependencies]
git-internal = "0.4.0"
anyhow = "1.0.100"
byte-unit = "5.2.0"
byteorder = "1.5.0"
bytes = "1.11.0"
chrono = { version = "0.4.42", features = ["serde"] }
clap = { version = "4.5.53", features = ["derive"] }
colored = "3.0.0"
flate2 = "1.1.5" # add features = ["zlib"] if slow
futures = "0.3.31"
futures-util = "0.3.31"
hex = "0.4.3"
http = "1.4.0"
ignore = "0.4.25"
indicatif = "0.18.3"
lazy_static = "1.5.0"
lru-mem = "0.3.0"
once_cell = "1.21.3"
regex = "1.12.2"
reqwest = { version = "0.12.24", features = [
"stream",
"json"
]}
ring = "0.17.14"
rpassword = "7.4.0"
scopeguard = "1.2.0"
sea-orm = { version = "1.1.19", features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
]}
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
sha1 = "0.10.6"
similar = "2.7.0"
thiserror = "2.0.17"
tokio = { version = "1.48.0", features = [
"rt-multi-thread",
"rt",
"macros",
"process"
]}
tokio-util = { version = "0.7.17", features = ["io"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
url = "2.5.7"
walkdir = "2.5.0"
wax = "0.6.0"
diffs = "0.5.1"
path-absolutize = "3.1.1"
infer = "0.19.0"
pathdiff = "0.2.3"
crc32fast = "1.5.0"
dirs = "5.0.1"
[target.'cfg(unix)'.dependencies] # only on Unix
pager = "0.16.1"
[dev-dependencies]
tempfile = "3.23.0"
serial_test = "3.2.0"
tokio = { version = "1.48.0", features = [
"rt-multi-thread",
"rt",
"macros",
"process"
]}
testcontainers = { version = "0.25.2", features = [
"http_wait",
"reusable-containers",
] }
reqwest = { version = "0.12.24", features = ["blocking"] }