Cargo.toml 884 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "lox-simulation"
  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. anyhow = "1.0"
  8. array-bytes = "6.2.0"
  9. bincode = "1"
  10. clap = { version = "4.4.14", features = ["derive"] }
  11. curve25519-dalek = { version = "4", default-features = false }
  12. hyper = { version = "0.14.28", features = ["full"] }
  13. lox_cli = { git = "https://git-crysp.uwaterloo.ca/vvecna/lox_cli.git", version = "0.1" }
  14. lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
  15. memory-stats = "1.0.0"
  16. rand = "0.8"
  17. serde = "1.0.197"
  18. serde_json = "1.0"
  19. tokio = { version = "1", features = ["full"] }
  20. troll-patrol = { git = "https://git-crysp.uwaterloo.ca/vvecna/troll-patrol.git", version = "0.1.0", features = ["simulation"] }
  21. x25519-dalek = { version = "2", features = ["serde"] }