21 lines
472 B
TOML
21 lines
472 B
TOML
[package]
|
|
name = "deployer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.24"
|
|
diesel = { version = "2.0.0", features = ["postgres", "r2d2"] }
|
|
lazy_static = "1.4.0"
|
|
postgres = "0.19.5"
|
|
r2d2 = "0.8.10"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
[dependencies.rocket]
|
|
version = "=0.5.0-rc.3"
|
|
features = ["json"]
|