user-svc/Cargo.toml

21 lines
672 B
TOML
Raw Normal View History

2022-06-23 18:45:13 +00:00
[package]
2022-07-08 15:30:15 +00:00
name = "user-svc-actix"
2022-06-23 18:45:13 +00:00
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"] }
2022-07-08 13:30:26 +00:00
sqlx = { version = "0.6.0", features = [ "runtime-tokio-rustls", "mysql", "chrono" ] }
2022-06-23 18:45:13 +00:00
actix-web = "4"
chrono = { version = "0.4", features = [ "serde" ] }
ring = "0.16.20"
data-encoding = "2.3.2"
futures-util = "0.3"
2022-08-30 17:32:22 +00:00
actix-web-utils = "0.2"
#log = { version = "0.4", features = ["serde"] }
dev-dtos = { git = "https://git.franklinblanco.dev/franklinblanco/dev-dtos.git" }