contaminate/Cargo.toml

26 lines
689 B
TOML

[package]
name = "contaminate"
version = "0.1.0"
authors = ["R. Tyler Croy <rtyler@brokenco.de>"]
edition = "2018"
[[bin]]
name = "test-registry"
path = "src/test_registry/main.rs"
[dependencies]
async-std = { version = "~1.6.0", features = ["attributes"]}
# Handling configuration overlays
config = { version = "~0.10.1", features = ["yaml"] }
# Logging
log = "~0.4.8"
pretty_env_logger = "~0.3.1"
# Needed to generate SHA256 sums of layers.d files
rust-crypto = "~0.2.36"
serde = { version = "~1.0.104", features = ["derive"] }
serde_json = "~1.0.0"
# Used for making http requests to the upstream docker registry
surf = "2.0.0-alpha.4"
# Used for serving the website
tide = "~0.13.0"