Cargo.toml 545 B

1234567891011121314151617
  1. [package]
  2. name = "cryptography-openssl"
  3. version.workspace = true
  4. authors.workspace = true
  5. edition.workspace = true
  6. publish.workspace = true
  7. rust-version.workspace = true
  8. [dependencies]
  9. cfg-if = "1"
  10. openssl = "0.10.68"
  11. ffi = { package = "openssl-sys", version = "0.9.101" }
  12. foreign-types = "0.3"
  13. foreign-types-shared = "0.1"
  14. [lints.rust]
  15. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(CRYPTOGRAPHY_OPENSSL_300_OR_GREATER)', 'cfg(CRYPTOGRAPHY_OPENSSL_320_OR_GREATER)', 'cfg(CRYPTOGRAPHY_IS_LIBRESSL)', 'cfg(CRYPTOGRAPHY_IS_BORINGSSL)'] }