Cargo.toml 821 B

12345678910111213141516171819202122
  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. hyper = { version = "0.14.28", features = ["full"] }
  12. lox_cli = { git = "https://git-crysp.uwaterloo.ca/vvecna/lox_cli.git", version = "0.1" }
  13. lox-library = { git = "https://gitlab.torproject.org/vecna/lox.git", version = "0.1.0" }
  14. memory-stats = "1.0.0"
  15. rand = "0.8"
  16. serde = "1.0.197"
  17. serde_json = "1.0"
  18. tokio = { version = "1", features = ["full"] }
  19. troll-patrol = { git = "https://git-crysp.uwaterloo.ca/vvecna/troll-patrol.git", version = "0.1.0", features = ["simulation"] }
  20. x25519-dalek = { version = "2", features = ["serde"] }