forked from dragonflyoss/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
94 lines (90 loc) · 2.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[workspace]
resolver = "2"
members = [
"dragonfly-client",
"dragonfly-client-backend",
"dragonfly-client-config",
"dragonfly-client-core",
"dragonfly-client-init",
"dragonfly-client-storage",
"dragonfly-client-util",
"dragonfly-client-backend/examples/plugin"
]
[workspace.package]
version = "0.1.102"
authors = ["The Dragonfly Developers"]
homepage = "https://d7y.io/"
repository = "https://github.com/dragonflyoss/client.git"
keywords = ["dragonfly", "dragonfly-client", "p2p", "container", "docker-image"]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
[workspace.dependencies]
dragonfly-client = { path = "dragonfly-client", version = "0.1.102" }
dragonfly-client-core = { path = "dragonfly-client-core", version = "0.1.102" }
dragonfly-client-config = { path = "dragonfly-client-config", version = "0.1.102" }
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "0.1.102" }
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "0.1.102" }
dragonfly-client-util = { path = "dragonfly-client-util", version = "0.1.102" }
dragonfly-client-init = { path = "dragonfly-client-init", version = "0.1.102" }
thiserror = "1.0"
dragonfly-api = "=2.0.148"
reqwest = { version = "0.12.4", features = ["stream", "native-tls", "default-tls", "rustls-tls"] }
rcgen = { version = "0.12.1", features = ["x509-parser"] }
hyper = { version = "1.4", features = ["full"] }
hyper-util = { version = "0.1.7", features = [
"client",
"client-legacy",
"tokio",
"server-auto",
"http1",
"http2",
] }
hyper-rustls = { version = "0.26", features = ["http1", "http2", "logging"] }
http-range-header = "0.4.1"
tracing = "0.1"
url = "2.5.2"
rustls = "0.22.4"
rustls-pki-types = "1.8.0"
rustls-pemfile = "2.1.3"
sha2 = "0.10"
blake3 = "1.5.3"
crc32fast = "1.4.2"
uuid = { version = "1.10", features = ["v4"] }
hex = "0.4"
rocksdb = "0.22.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
http = "1"
tonic = { version = "0.12.1", features = ["zstd"] }
tokio = { version = "1.39.2", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["full"] }
tokio-stream = "0.1.15"
validator = { version = "0.16", features = ["derive"] }
warp = "0.3.5"
headers = "0.4.0"
regex = "1.10.6"
humantime = "2.1.0"
prost-wkt-types = "0.6"
chrono = { version = "0.4.35", features = ["serde", "clock"] }
openssl = { version = "0.10", features = ["vendored"] }
opendal = { version = "0.47.3", features = [
"services-s3",
"services-azblob",
"services-gcs",
"services-oss",
"services-obs",
"services-cos",
] }
clap = { version = "4.5.16", features = ["derive"] }
anyhow = "1.0.86"
toml_edit = "0.22.14"
toml = "0.8.19"
base16ct = { version = "0.2", features = ["alloc"] }
bytesize = {version = "1.2.0", features = ["serde"]}
bytesize-serde = "0.2.1"
percent-encoding = "2.3.1"
[profile.release]
debug = true
[profile.bench]
debug = true