Cargo.toml 347 B

1234567891011121314151617
  1. cargo-features = ["workspace-inheritance"]
  2. [package]
  3. name = "auth"
  4. version.workspace = true
  5. authors.workspace = true
  6. edition.workspace = true
  7. license.workspace = true
  8. [dependencies]
  9. serde = { version = "^1", features = ["derive"] }
  10. once_cell = "1.8.0"
  11. rand = "0.8.3"
  12. aes-gcm = "0.9.4"
  13. base64 = "0.13.0"
  14. thiserror = "1.0.30"
  15. displaydoc = "0.2.3"