# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.72" name = "pkcs1" version = "0.8.0-rc.1" authors = ["RustCrypto Developers"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.2 (RFC 8017) """ homepage = "https://github.com/RustCrypto/formats/tree/master/pkcs1" readme = "README.md" keywords = [ "crypto", "key", "pem", "pkcs", "rsa", ] categories = [ "cryptography", "data-structures", "encoding", "no-std", "parser-implementations", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/formats" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "pkcs1" path = "src/lib.rs" [[test]] name = "params" path = "tests/params.rs" [[test]] name = "private_key" path = "tests/private_key.rs" [[test]] name = "public_key" path = "tests/public_key.rs" [[test]] name = "traits" path = "tests/traits.rs" [dependencies.der] version = "0.8.0-rc.0" features = ["oid"] [dependencies.pkcs8] version = "0.11.0-rc.1" optional = true default-features = false [dependencies.spki] version = "0.8.0-rc.0" [dev-dependencies.const-oid] version = "0.10.0-rc.0" features = ["db"] [dev-dependencies.hex-literal] version = "0.4" [dev-dependencies.tempfile] version = "3" [features] alloc = [ "der/alloc", "zeroize", "pkcs8?/alloc", ] pem = [ "alloc", "der/pem", "pkcs8?/pem", ] std = [ "der/std", "alloc", ] zeroize = ["der/zeroize"]