Cargo.toml 601 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "lox-extensions"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. curve25519-dalek = {version = "4.1.3", default-features = false, features = ["serde", "rand_core", "digest", "precomputed-tables"] }
  7. lazy_static = "1.5.0"
  8. rand = {version = "0.8.0", features = ["std_rng"] }
  9. serde = "1.0.217"
  10. serde_with = { version = "3.0.0", features = ["json"] }
  11. sha1 = "0.10"
  12. sha2 = "0.10.8"
  13. subtle = "2.5"
  14. cmz = {git = "ssh://gogs@git-crysp.uwaterloo.ca/SigmaProtocol/cmz.git"}
  15. group = "0.13"
  16. ff = "0.13.1"
  17. bincode = "1"
  18. rand_core = "0.6"
  19. thiserror = "2.0.12"
  20. [features]
  21. bridgeauth = ["chrono"]