Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829
  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-library = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox-rs.git", version = "0.1.0" }
  9. lox_utils = { git = "https://gitlab.torproject.org/tpo/anti-censorship/lox-rs.git", version = "0.1.0" }
  10. curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
  11. ed25519-dalek = { version = "1", features = ["serde"] }
  12. getopts = "0.2"
  13. serde = "1"
  14. bincode = "1"
  15. serde_json = "1.0"
  16. serde_with = "1.9.1"
  17. time = "0.2"
  18. # TODO: reduce feature set to just the ones needed
  19. tokio = { version = "1", features = ["full"] }
  20. hyper = { version = "0.14.27", features = ["full"] }
  21. async-trait = "0.1.68"
  22. [features]
  23. default = ["u64_backend"]
  24. u32_backend = ["curve25519-dalek/u32_backend"]
  25. u64_backend = ["curve25519-dalek/u64_backend"]
  26. simd_backend = ["curve25519-dalek/simd_backend"]