forked from camallo/dkregistry-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (58 loc) · 1.48 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
[package]
name = "docker-registry"
rust-version = "1.71.1"
version = "0.7.0"
authors = [
"Luca Bruno <[email protected]>",
"Stefan Junker <[email protected]>",
"Bryant Biggs <[email protected]>",
]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/docker-registry"
repository = "https://github.com/clowdhaus/docker-registry"
description = "A pure-Rust asynchronous library for Docker Registry HTTP API v2"
keywords = [
"docker",
"registry",
"async",
]
exclude = [
".gitignore",
"certificates",
"tests",
]
edition = "2021"
[dependencies]
base64 = "0.22"
futures = "0.3"
libflate = "2.1"
log = "0.4"
mime = "0.3"
regex-lite = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
serde_ignored = "0.1"
strum = { version = "0.26", features = ["derive"] }
tar = "0.4"
tokio = { version = "1.0", default-features = false, features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "stream"] }
sha2 = "0.10"
bytes = "1.9"
pin-project = "1.1"
async-stream = "0.3"
thiserror = "2.0"
url = "2.5"
[dev-dependencies]
dirs = "5.0"
hyper = "1.5"
mockito = "1.6"
native-tls = "0.2"
test-case = "3.3"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[features]
default = ["reqwest-default-tls"]
reqwest-default-tls = ["reqwest/default-tls"]
reqwest-rustls = ["reqwest/rustls-tls"]
test-net-private = []