Cargo.toml 1.2 KB

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