user-svc/Cargo.toml

16 lines
509 B
TOML
Raw Normal View History

2022-06-23 18:45:13 +00:00
[package]
name = "corpos-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "0.15.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
#sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "mysql" ] }
diesel = { version = "1.4.4", features = ["mysql", "chrono"] }
diesel_migrations = { version = "1.4.0"}
2022-06-23 18:45:13 +00:00
actix-web = "4"
chrono = "0.4"