Cargo.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "troll-patrol"
  3. authors = ["Vecna <vvecna@uwaterloo.ca>"]
  4. version = "0.1.0"
  5. edition = "2021"
  6. description = "Troll Patrol Bridge Blocking Dection System"
  7. license = "MIT"
  8. keywords = ["tor", "troll patrol", "bridges","blocking"]
  9. repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/troll-patrol"
  10. readme = "README.md"
  11. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  12. [dependencies]
  13. aes-gcm = "0.10"
  14. anyhow = "1.0"
  15. array-bytes = "6.2.0"
  16. bincode = "1"
  17. chrono = "0.4"
  18. clap = { version = "4.4.14", features = ["derive"] }
  19. curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
  20. ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
  21. faketime = { version = "0.2", optional = true }
  22. futures = "0.3.30"
  23. hkdf = "0.12"
  24. http = "1"
  25. http-body-util = "0.1"
  26. hyper = { version = "0.14.28", features = ["full"] }
  27. hyper-rustls = "0.26.0"
  28. hyper-util = { version = "0.1", features = ["full"] }
  29. julianday = "1.2.0"
  30. lazy_static = "1"
  31. lox-library = { path = "../lox-library", version = "0.2.0" }
  32. memory-stats = { version = "1.0.0", optional = true }
  33. nalgebra = "0.29"
  34. rand = { version = "0.8" }
  35. #select = "0.6.0"
  36. serde = "1.0.197"
  37. serde_json = "1.0"
  38. serde_with = {version = "3.7.0", features = ["json"]}
  39. sha1 = "0.10"
  40. sha3 = "0.10"
  41. sled = "0.34.7"
  42. statrs = "0.16"
  43. time = "0.3.36"
  44. tokio = { version = "1", features = ["full"] }
  45. tokio-cron = "0.1.2"
  46. x25519-dalek = { version = "2", features = ["serde", "static_secrets"] }
  47. [dev-dependencies]
  48. base64 = "0.21.7"
  49. faketime = "0.2"
  50. [features]
  51. simulation = ["faketime", "memory-stats"]