1234567891011121314151617 |
- [package]
- name = "rust-web"
- version = "0.1.0"
- edition = "2021"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- actix-web = "3.0.1"
- serde = "1.0.114"
- validator = "0.10.1"
- validator_derive = "0.10.1"
- # sqlx
- serde_yaml = "0.8.13"
- sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "postgres", "macros", "chrono"] }
- once_cell = "1.3.1"
- chrono = { version = "0.4.15", features = ["serde"] }
|