/ backend / 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", features = ["json"] }
10  serde = { version = "1.0", features = ["derive"] }
11  serde_json = "1.0"
12  dotenvy = "0.15"
13  thiserror = "1.0"
14  uuid = { version = "1.7", features = ["serde", "v4"] }
15  sqlx = { version = "0.7", features = [
16      "runtime-async-std-rustls",
17      "postgres",
18      "macros",
19      "migrate",
20      "chrono",
21      "uuid",
22  ] }
23  sha256 = "1.5"
24  docker-api = "0.14"
25  rocket_dyn_templates = { version = "0.1", features = ["handlebars"] }
26  reqwest = { version = "0.11", features = ["json"] }
27  log = "0.4"
28  openssl = { version = "0.10", features = ["vendored"] }