30 lines
977 B
TOML
30 lines
977 B
TOML
[package]
|
|
name = "pem-rfc7468"
|
|
version = "0.7.0"
|
|
description = """
|
|
PEM Encoding (RFC 7468) for PKIX, PKCS, and CMS Structures, implementing a
|
|
strict subset of the original Privacy-Enhanced Mail encoding intended
|
|
specifically for use with cryptographic keys, certificates, and other messages.
|
|
Provides a no_std-friendly, constant-time implementation suitable for use with
|
|
cryptographic private keys.
|
|
"""
|
|
authors = ["RustCrypto Developers"]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/RustCrypto/formats/tree/master/pem-rfc7468"
|
|
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
|
|
keywords = ["crypto", "key", "pem", "pkcs", "rsa"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
|
|
[dependencies]
|
|
base64ct = { version = "1.4", path = "../base64ct" }
|
|
|
|
[features]
|
|
alloc = ["base64ct/alloc"]
|
|
std = ["alloc", "base64ct/std"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|