Cargo.toml 455 B

1234567891011121314151617
  1. [package]
  2. name = "cryptography-key-parsing"
  3. version.workspace = true
  4. authors.workspace = true
  5. edition.workspace = true
  6. publish.workspace = true
  7. rust-version.workspace = true
  8. [dependencies]
  9. asn1.workspace = true
  10. cfg-if = "1"
  11. openssl = "0.10.68"
  12. openssl-sys = "0.9.104"
  13. cryptography-x509 = { path = "../cryptography-x509" }
  14. [lints.rust]
  15. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(CRYPTOGRAPHY_IS_LIBRESSL)', 'cfg(CRYPTOGRAPHY_IS_BORINGSSL)'] }