Cargo.toml 734 B

12345678910111213141516171819202122232425262728293031
  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 = { version = "0.8", features = ["debug-transcript"] }
  10. zkp = "0.8"
  11. bincode = "1"
  12. chrono = "0.4"
  13. rand = "0.7"
  14. serde = "1"
  15. serde_with = "1.9.1"
  16. sha2 = "0.9"
  17. statistical = "1.0.0"
  18. lazy_static = "1"
  19. hex_fmt = "0.3"
  20. aes-gcm = "0.8"
  21. base64 = "0.13"
  22. time = "0.2"
  23. subtle = "2.4"
  24. [features]
  25. default = ["u64_backend"]
  26. u32_backend = ["curve25519-dalek/u32_backend"]
  27. u64_backend = ["curve25519-dalek/u64_backend"]
  28. simd_backend = ["curve25519-dalek/simd_backend"]
  29. fast = []