Cargo.toml 590 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "lox"
  3. version = "0.1.0"
  4. authors = ["Ian Goldberg <iang@uwaterloo.ca>"]
  5. edition = "2018"
  6. [dependencies]
  7. curve25519-dalek = { package = "curve25519-dalek-ng", version = "3", default-features = false, features = ["serde", "std"] }
  8. ed25519-dalek = "1"
  9. zkp = "0.8"
  10. bincode = "1"
  11. rand = "0.7"
  12. serde = "1"
  13. sha2 = "0.9"
  14. lazy_static = "1"
  15. hex_fmt = "0.3"
  16. aes-gcm = "0.8"
  17. base64 = "0.13"
  18. time = "0.2"
  19. [features]
  20. default = ["u64_backend"]
  21. u32_backend = ["curve25519-dalek/u32_backend"]
  22. u64_backend = ["curve25519-dalek/u64_backend"]
  23. simd_backend = ["curve25519-dalek/simd_backend"]