1
0

Cargo.toml 710 B

123456789101112131415161718192021
  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. curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
  10. ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
  11. lox-library = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox.git", version = "0.1.0" }
  12. serde = "1.0.192"
  13. serde_with = {version = "3.4.0", features = ["json"]}
  14. sha1 = "0.10"
  15. sha3 = "0.10"
  16. time = "0.3.30"
  17. # probably not needed once I can query an API
  18. rand = { version = "0.8", features = ["std_rng"]}