The backend for PuffPastry, a DAO platform.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Cargo.toml 379 B

2ヶ月前
123456789101112
  1. [package]
  2. name = "puffpastry-backend"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. actix-web = { version = "4", features = ["cookies"] }
  7. serde = { version = "1.0", features = ["derive"] }
  8. diesel = { version = "2.2.0", features = ["postgres", "chrono"] }
  9. dotenvy = "0.15"
  10. chrono = { version = "0.4.38", features = ["serde"] }
  11. uuid = { version = "1.10.0", features = ["v4"] }