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"] }
|
2022-06-27 19:09:14 +00:00
|
|
|
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "mysql", "chrono" ] }
|
2022-06-23 18:45:13 +00:00
|
|
|
actix-web = "4"
|
2022-06-27 19:09:14 +00:00
|
|
|
chrono = { version = "0.4", features = [ "serde" ] }
|
|
|
|
ring = "0.16.20"
|
2022-06-27 21:54:51 +00:00
|
|
|
data-encoding = "2.3.2"
|
|
|
|
futures-util = "0.3"
|