Cargo.toml 843 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "lox-extensions"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. aes-gcm = { version = "0.10", features = ["aes"] }
  7. base64 = "0.21.0"
  8. chrono = { version = "0.4.38", default-features = false, features = ["now"], optional = true }
  9. curve25519-dalek = {version = "4.1.3", default-features = false, features = ["serde", "group", "rand_core", "digest"] }
  10. ed25519-dalek = { version = "2.1.1", default-features = false, features = ["serde", "rand_core"] }
  11. lazy_static = "1.5.0"
  12. rand = {version = "0.8.0", features = ["std_rng"] }
  13. serde = "1.0.217"
  14. serde_with = { version = "3.0.0", features = ["json"] }
  15. sha1 = "0.10"
  16. sha2 = "0.10.8"
  17. subtle = "2.5"
  18. time = "0.3.36"
  19. cmz = {path = "../cmz"}
  20. group = "0.13"
  21. ff = "0.13.1"
  22. bincode = "1"
  23. rand_core = "0.6"
  24. thiserror = "2.0.12"
  25. serde_bytes = "0.11.17"
  26. [features]
  27. bridgeauth = ["chrono"]