Cargo.toml 605 B

1234567891011121314151617181920212223242526
  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. subtle = "2.4"
  20. [features]
  21. default = ["u64_backend"]
  22. u32_backend = ["curve25519-dalek/u32_backend"]
  23. u64_backend = ["curve25519-dalek/u64_backend"]
  24. simd_backend = ["curve25519-dalek/simd_backend"]