forked from oras-project/rust-oci-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
69 lines (65 loc) · 2.12 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
[package]
authors = [
"Matt Butcher <matt.butcher@microsoft.com>",
"Matthew Fisher <matt.fisher@microsoft.com>",
"Radu Matei <radu.matei@microsoft.com>",
"Taylor Thomas <taylor.thomas@microsoft.com>",
"Brian Ketelsen <Brian.Ketelsen@microsoft.com>",
"Brian Hardock <Brian.Hardock@microsoft.com>",
"Ryan Levick <rylevick@microsoft.com>",
"Kevin Flansburg <kevin.flansburg@gmail.com>",
"Flavio Castelli <fcastelli@suse.com>",
]
description = "An OCI implementation in Rust"
edition = "2021"
keywords = [
"oci",
"containers",
]
license = "Apache-2.0"
name = "oci-distribution"
readme = "README.md"
repository = "https://github.com/krustlet/oci-distribution"
version = "0.10.0"
[badges]
maintenance = {status = "actively-developed"}
[features]
default = ["native-tls", "test-registry"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
rustls-tls-native-roots = ["reqwest/rustls-tls-native-roots"]
trust-dns = ["reqwest/trust-dns"]
# This features is used by tests that use docker to create a registry
test-registry = []
[dependencies]
chrono = { version = "0.4.23", features = ["serde"] }
futures = "0.3"
futures-util = "0.3"
http = "0.2"
http-auth = { version = "0.1", default_features = false }
jwt = "0.16"
lazy_static = "1.4"
olpc-cjson = "0.1"
regex = "1.6"
reqwest = { version = "0.11", default-features = false, features = ["json", "stream"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.10"
thiserror = "1.0"
tokio = { version = "1.21", features = ["macros", "io-util"] }
tokio-util = { version = "0.7.4", features = ["compat"] }
tracing = { version = "0.1", features = ['log'] }
unicase = "2.6"
[dev-dependencies]
anyhow = "1.0"
assert-json-diff = "2.0.2"
async-std = "1.12"
clap = { version = "4.0", features = ["derive"] }
docker_credential = "1.0"
hmac = "0.12"
rstest = "0.17.0"
rust-s3 = { version = "0.32", default-features = false, features = ["no-verify-ssl", "tokio-rustls-tls", "tags"] }
tempfile = "3.3"
testcontainers = "0.14"
tokio = { version = "1.21", features = ["macros", "fs", "rt-multi-thread"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }