Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. aes-gcm = "0.10"
  8. array-bytes = "6.2.0"
  9. bincode = "1"
  10. chrono = "0.4"
  11. clap = { version = "4.4.14", features = ["derive"] }
  12. curve25519-dalek = { version = "4", default-features = false, features = ["serde", "rand_core", "digest"] }
  13. ed25519-dalek = { version = "2", features = ["serde", "rand_core"] }
  14. faketime = { version = "0.2", optional = true }
  15. futures = "0.3.30"
  16. hkdf = "0.12"
  17. http = "1"
  18. http-body-util = "0.1"
  19. hyper = { version = "0.14.28", features = ["full"] }
  20. hyper-rustls = "0.26.0"
  21. hyper-util = { version = "0.1", features = ["full"] }
  22. julianday = "1.2.0"
  23. lazy_static = "1"
  24. lox_cli = { path = "../lox_cli", version = "0.1", optional = true }
  25. lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
  26. nalgebra = "0.29"
  27. rand = { version = "0.8" }
  28. #select = "0.6.0"
  29. serde = "1.0.197"
  30. serde_json = "1.0"
  31. serde_with = {version = "3.7.0", features = ["json"]}
  32. sha1 = "0.10"
  33. sha3 = "0.10"
  34. sled = "0.34.7"
  35. statrs = "0.16"
  36. time = "0.3.36"
  37. tokio = { version = "1", features = ["full"] }
  38. tokio-cron = "0.1.2"
  39. x25519-dalek = { version = "2", features = ["serde", "static_secrets"] }
  40. [dev-dependencies]
  41. base64 = "0.21.7"
  42. faketime = "0.2"
  43. [features]
  44. simulation = ["faketime", "lox_cli"]