/ Cargo.toml
Cargo.toml
1 [package] 2 name = "container-registry-rs" 3 version = "0.1.0" 4 edition = "2021" 5 6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8 [dependencies] 9 rocket = { version = "0.5.0-rc.3", features = ["tls", "json"] } 10 serde = { version = "1", features = ["derive"] } 11 serde_json = "1" 12 dotenv = "0.15" 13 thiserror = "1.0" 14 uuid = { version = "1.3", features = ["serde", "v4"] } 15 sqlx = { version = "0.6", features = [ 16 "runtime-async-std-rustls", 17 "postgres", 18 "macros", 19 "migrate", 20 "chrono", 21 "uuid", 22 "offline", 23 ] } 24 sha256 = "1.1.4" 25 docker-api = "0.14.0"