cryptography/src/rust/cryptography-key-parsing/Cargo.toml
Alex Gaynor 01fc9fb6bc
Migrate RSA PKCS#1 parsing to pure-Rust (#10104)
We no longer let OpenSSL parse anything.
2024-01-03 11:02:55 -03:00

12 lines
309 B
TOML

[package]
name = "cryptography-key-parsing"
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]
asn1 = { version = "0.15.5", default-features = false }
openssl = "0.10.62"