Cargo.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. futures = "0.3.30"
  15. hkdf = "0.12"
  16. http = "1"
  17. http-body-util = "0.1"
  18. hyper = { version = "0.14.28", features = ["full"] }
  19. hyper-rustls = "0.26.0"
  20. hyper-util = { version = "0.1", features = ["full"] }
  21. julianday = "1.2.0"
  22. lazy_static = "1"
  23. lox_cli = { path = "../lox_cli", version = "0.1", optional = true }
  24. lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
  25. nalgebra = "0.29"
  26. rand = { version = "0.8" }
  27. #select = "0.6.0"
  28. serde = "1.0.197"
  29. serde_json = "1.0"
  30. serde_with = {version = "3.7.0", features = ["json"]}
  31. sha1 = "0.10"
  32. sha3 = "0.10"
  33. sled = "0.34.7"
  34. statrs = "0.16"
  35. time = "0.3.36"
  36. tokio = { version = "1", features = ["full"] }
  37. tokio-cron = "0.1.2"
  38. x25519-dalek = { version = "2", features = ["serde", "static_secrets"] }
  39. [dev-dependencies]
  40. base64 = "0.21.7"
  41. [features]
  42. simulation = ["lox_cli"]