1
0

Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "troll-patrol"
  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. array-bytes = "6.2.0"
  8. bincode = "1"
  9. chrono = "0.4"
  10. clap = { version = "4.4.14", features = ["derive"] }
  11. curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
  12. ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
  13. futures = "0.3.30"
  14. http = "1"
  15. http-body-util = "0.1"
  16. hyper = { version = "0.14.28", features = ["full"] }
  17. hyper-rustls = "0.26.0"
  18. hyper-util = { version = "0.1", features = ["full"] }
  19. julianday = "1.2.0"
  20. lazy_static = "1"
  21. lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
  22. rand = { version = "0.8" }
  23. #select = "0.6.0"
  24. serde = "1.0.197"
  25. serde_json = "1.0"
  26. serde_with = {version = "3.7.0", features = ["json"]}
  27. sha1 = "0.10"
  28. sha3 = "0.10"
  29. sled = "0.34.7"
  30. time = "0.3.30"
  31. tokio = { version = "1", features = ["full"] }
  32. tokio-cron = "0.1.2"
  33. [dev-dependencies]
  34. base64 = "0.21.7"