Cargo.toml 750 B

1234567891011121314151617181920212223242526272829303132
  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. #cfg-if = "0.1"
  14. rand = "0.7"
  15. serde = "1"
  16. serde_with = "1.9.1"
  17. sha2 = "0.9"
  18. statistical = "1.0.0"
  19. lazy_static = "1"
  20. hex_fmt = "0.3"
  21. aes-gcm = "0.8"
  22. base64 = "0.13"
  23. time = "0.2"
  24. subtle = "2.4"
  25. [features]
  26. default = ["u64_backend"]
  27. u32_backend = ["curve25519-dalek/u32_backend"]
  28. u64_backend = ["curve25519-dalek/u64_backend"]
  29. simd_backend = ["curve25519-dalek/simd_backend"]
  30. fast = []