Cargo.toml 456 B

1234567891011121314151617181920
  1. [package]
  2. name = "gitr"
  3. version = "0.1.0"
  4. edition = "2024"
  5. [dependencies]
  6. argon2 = "0.5"
  7. actix-web = "4"
  8. hex = "0.4"
  9. rand_core = { version = "0.6", features = ["getrandom"] }
  10. rusqlite = { version = "0.32", features = ["bundled"] }
  11. serde = { version = "1", features = ["derive"] }
  12. sha2 = "0.10"
  13. thiserror = "2"
  14. tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
  15. toml = "0.8"
  16. [dev-dependencies]
  17. actix-http = "3"
  18. serde_json = "1"