[package] name = "cryptography-rust" version = "0.1.0" authors = ["The cryptography developers "] edition = "2021" publish = false # This specifies the MSRV rust-version = "1.56.0" [dependencies] once_cell = "1" pyo3 = { version = "0.18", features = ["abi3-py37"] } asn1 = { version = "0.15.2", default-features = false } cryptography-cffi = { path = "cryptography-cffi" } cryptography-x509 = { path = "cryptography-x509" } cryptography-openssl = { path = "cryptography-openssl" } pem = "1.1" ouroboros = "0.15" openssl = "0.10.52" openssl-sys = "0.9.87" foreign-types-shared = "0.1" [build-dependencies] cc = "1.0.72" [features] extension-module = ["pyo3/extension-module"] default = ["extension-module"] [lib] name = "cryptography_rust" crate-type = ["cdylib"] [profile.release] overflow-checks = true [workspace] members = ["cryptography-cffi", "cryptography-openssl", "cryptography-x509"]