Cargo.toml 463 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "acorn"
  3. version = "0.1.0"
  4. authors = ["Nicolas Winkler <nicolas.winkler@gmx.ch>"]
  5. edition = "2018"
  6. [dependencies]
  7. actix = "0.10"
  8. actix-codec = "0.3"
  9. actix-web = "3"
  10. actix-web-actors = "3"
  11. actix-files = "0.3"
  12. awc = "2"
  13. env_logger = "0.7"
  14. futures = "0.3.1"
  15. bytes = "0.5.3"
  16. serde = "1.0"
  17. serde_json = "1.0"
  18. rand = "0.7.3"
  19. lazy_static = "1.4.0"
  20. r2d2_sqlite = "0.17.0"
  21. r2d2 = "0.8.9"
  22. [dependencies.rusqlite]
  23. version = "0.24.2"
  24. features = ["bundled"]