Cargo.toml 299 B

123456789101112131415
  1. [package]
  2. name = "flowy-encrypt"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. aes-gcm = "0.10.2"
  8. rand = "0.8"
  9. pbkdf2 = "0.12.2"
  10. hmac = "0.12.1"
  11. sha2 = "0.10.7"
  12. anyhow = "1.0.72"
  13. base64 = "0.21.2"