-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
68 lines (61 loc) · 2.43 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
[package]
name = "oci-registry"
version = "0.4.5"
edition = "2021"
license = "MIT"
repository = "https://github.com/mcronce/oci-registry"
description = "An implementation of the OCI Registry spec with filesystem and S3 storage back-ends"
keywords = ["container", "docker", "registry", "mirror"]
include = ["Cargo.toml", "src"]
[profile.dev]
debug = 1
[profile.release]
debug = 1
lto = "fat"
codegen-units = 1
[[bench]]
name = "main"
harness = false
[dependencies]
actix-web = "4.2.1"
actix-web-prometheus = { version = "0.1.2", features = ["process"] }
arcerror = "0.1.5"
arcstr = { version = "1.1.5", features = ["serde"] }
async-broadcast = "0.7.0"
async-stream = "0.3.3"
async-walkdir = "1.0.0"
bytes = { version = "1.2.1", features = ["serde"] }
camino = "1.1.1"
clap = { version = "4.0.12", features = ["derive", "env"] }
compact_str = { version = "0.7.0", features = ["serde"] }
dkregistry = { version = "0.5.1-alpha.0", git = "https://github.com/mcronce/dkregistry-rs.git", default-features = false, features = ["reqwest-rustls"] }
futures = "0.3.24"
hex = "0.4.3"
humantime = "2.1.0"
lazy-regex = "3.0.0"
once_cell = { version = "1.18.0", default-features = false, features = ["parking_lot"] }
pin-project = "1.1.4"
prometheus = { version = "0.13.3", default-features = false }
regex = "1.6.0"
rusoto_core = { version = "0.48.0", default-features = false, features = ["hyper-rustls", "flate2"] }
rusoto_credential = "0.48.0"
rusoto_s3 = { version = "0.48.0", default-features = false, features = ["rustls"] }
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
serde_with = { version = "3.0.0", default-features = false, features = ["hex"] }
serde_yaml = "0.9.13"
sha2 = { version = "0.10.6", features = ["asm"] }
socket-address = "0.1.0"
thiserror = "1.0.37"
tikv-jemallocator-global = { version = "0.5.0", features = ["tikv-jemallocator"] }
time = { version = "0.3.15", features = ["parsing"] }
tokio = { version = "1.24.1", features = ["fs", "io-util"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[dev-dependencies]
criterion = "0.5.1"
# TODO: Once https://github.com/rusoto/rusoto/pull/1981 is merged, remove these.
[patch.crates-io]
rusoto_core = {git = "https://github.com/mcronce/rusoto.git", branch = "enable-http1"}
rusoto_credential = {git = "https://github.com/mcronce/rusoto.git", branch = "enable-http1"}
rusoto_s3 = {git = "https://github.com/mcronce/rusoto.git", branch = "enable-http1"}