Get Product API working fine

This commit is contained in:
Pratik Tripathy
2020-11-30 02:37:37 +05:30
commit 7692376a2b
20 changed files with 2359 additions and 0 deletions

22
Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[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"