Cargo.toml 784 B

12345678910111213141516171819202122
  1. [package]
  2. name = "lox_test"
  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. #lox = { git = "https://git-crysp.uwaterloo.ca/iang/lox.git", branch = "vvecna/lox_test" }
  8. lox = { git = "https://gitlab.torproject.org/onyinyang/lox.git" }
  9. curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
  10. ed25519-dalek = { version = "1", features = ["serde"] }
  11. getopts = "0.2"
  12. serde = "1"
  13. bincode = "1"
  14. serde_json = "1.0"
  15. serde_with = "1.9.1"
  16. time = "0.2"
  17. # TODO: reduce feature set to just the ones needed
  18. tokio = { version = "1.20", features = ["full"] }
  19. hyper = { version = "0.14", features = ["full"] }
  20. async-trait = "0.1.68"