Cargo.toml 463 B

1234567891011121314151617
  1. [package]
  2. name = "rust-web"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. actix-web = "3.0.1"
  8. serde = "1.0.114"
  9. validator = "0.10.1"
  10. validator_derive = "0.10.1"
  11. # sqlx
  12. serde_yaml = "0.8.13"
  13. sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "postgres", "macros", "chrono"] }
  14. once_cell = "1.3.1"
  15. chrono = { version = "0.4.15", features = ["serde"] }