1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
[workspace.package]
version = "0.1.0"
authors = ["The cryptography developers <cryptography-dev@python.org>"]
edition = "2021"
publish = false
# This specifies the MSRV
rust-version = "1.65.0"
[package]
name = "cryptography-rust"
version.workspace = true
authors.workspace = true
edition.workspace = true
publish.workspace = true
rust-version.workspace = true
[dependencies]
once_cell = "1"
cfg-if = "1"
pyo3 = { version = "0.22.2", features = ["abi3"] }
asn1 = { version = "0.20.0", default-features = false }
cryptography-cffi = { path = "cryptography-cffi" }
cryptography-keepalive = { path = "cryptography-keepalive" }
cryptography-key-parsing = { path = "cryptography-key-parsing" }
cryptography-x509 = { path = "cryptography-x509" }
cryptography-x509-verification = { path = "cryptography-x509-verification" }
cryptography-openssl = { path = "cryptography-openssl" }
pem = { version = "3", default-features = false }
openssl = "0.10.64"
openssl-sys = "0.9.101"
foreign-types-shared = "0.1"
self_cell = "1"
[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-keepalive",
"cryptography-key-parsing",
"cryptography-openssl",
"cryptography-x509",
"cryptography-x509-verification",
]
|