2024-10-27 21:17:40 +00:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
|
|
|
|
"src/rust/",
|
|
|
|
|
"src/rust/cryptography-cffi",
|
2025-01-20 23:24:46 +00:00
|
|
|
"src/rust/cryptography-crypto",
|
2024-10-27 21:17:40 +00:00
|
|
|
"src/rust/cryptography-keepalive",
|
|
|
|
|
"src/rust/cryptography-key-parsing",
|
|
|
|
|
"src/rust/cryptography-openssl",
|
|
|
|
|
"src/rust/cryptography-x509",
|
|
|
|
|
"src/rust/cryptography-x509-verification",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[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"
|
|
|
|
|
|
2024-11-10 13:34:04 +00:00
|
|
|
[workspace.dependencies]
|
2024-11-21 04:12:09 +00:00
|
|
|
asn1 = { version = "0.20.0", default-features = false }
|
2025-01-13 12:49:21 +00:00
|
|
|
pyo3 = { version = "0.23.4", features = ["abi3"] }
|
2025-02-02 20:24:18 +00:00
|
|
|
openssl = "0.10.70"
|
2025-02-01 21:02:26 +00:00
|
|
|
openssl-sys = "0.9.104"
|
2024-11-10 13:34:04 +00:00
|
|
|
|
2024-10-27 21:17:40 +00:00
|
|
|
[profile.release]
|
|
|
|
|
overflow-checks = true
|