22 lines
577 B
TOML
22 lines
577 B
TOML
[package]
|
|
name = "actixweb_diesel"
|
|
version = "0.1.0"
|
|
authors = ["Pratik Tripathy <mail@pratik.live>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "3.3.0"
|
|
actix-rt = "1.1.1"
|
|
listenfd = "0.3.3"
|
|
dotenv = "0.15.0"
|
|
log = "0.4.11"
|
|
env_logger = "0.8.2"
|
|
serde = "1.0.117"
|
|
serde_json = "1.0.59"
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
diesel = { version = "1.4.5", features = ["postgres", "chrono", "r2d2"] }
|
|
diesel_migrations = "1.4.0"
|
|
lazy_static = "1.4.0"
|
|
r2d2 = "0.8.9" |