cryptography/src/rust/Cargo.toml
dependabot[bot] d5b800e1b1
Bump openssl from 0.10.55 to 0.10.56 in /src/rust (#9368)
Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.56.
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56)

---
updated-dependencies:
- dependency-name: openssl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-06 13:51:48 +00:00

43 lines
1,014 B
TOML

[package]
name = "cryptography-rust"
version = "0.1.0"
authors = ["The cryptography developers <cryptography-dev@python.org>"]
edition = "2021"
publish = false
# This specifies the MSRV
rust-version = "1.63.0"
[dependencies]
once_cell = "1"
pyo3 = { version = "0.19", features = ["abi3-py37"] }
asn1 = { version = "0.15.4", default-features = false }
cryptography-cffi = { path = "cryptography-cffi" }
cryptography-x509 = { path = "cryptography-x509" }
cryptography-openssl = { path = "cryptography-openssl" }
pem = { version = "3", default-features = false }
openssl = "0.10.56"
openssl-sys = "0.9.91"
foreign-types-shared = "0.1"
self_cell = "1"
[build-dependencies]
cc = "1.0.81"
[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",
"cryptography-x509-validation",
]