Cargo.toml 386 B

1234567891011121314151617
  1. [package]
  2. name = "cryptography-cffi"
  3. version.workspace = true
  4. authors.workspace = true
  5. edition.workspace = true
  6. publish.workspace = true
  7. rust-version.workspace = true
  8. [dependencies]
  9. pyo3.workspace = true
  10. openssl-sys = "0.9.104"
  11. [build-dependencies]
  12. cc = "1.2.1"
  13. [lints.rust]
  14. unexpected_cfgs = { level = "warn", check-cfg = ['cfg(python_implementation, values("CPython", "PyPy"))'] }