41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "spki"
|
|
version = "0.7.3"
|
|
description = """
|
|
X.509 Subject Public Key Info (RFC5280) describing public keys as well as their
|
|
associated AlgorithmIdentifiers (i.e. OIDs)
|
|
"""
|
|
authors = ["RustCrypto Developers"]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/RustCrypto/formats/tree/master/spki"
|
|
categories = ["cryptography", "data-structures", "encoding", "no-std"]
|
|
keywords = ["crypto", "x509"]
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
[dependencies]
|
|
der = { version = "0.7.2", features = ["oid"] }
|
|
|
|
# Optional dependencies
|
|
arbitrary = { version = "1.2", features = ["derive"], optional = true }
|
|
base64ct = { version = "1", optional = true, default-features = false }
|
|
sha2 = { version = "0.10", optional = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.4"
|
|
tempfile = "3"
|
|
|
|
[features]
|
|
alloc = ["base64ct?/alloc", "der/alloc"]
|
|
std = ["der/std", "alloc"]
|
|
|
|
arbitrary = ["std", "dep:arbitrary", "der/arbitrary"]
|
|
base64 = ["dep:base64ct"]
|
|
fingerprint = ["sha2"]
|
|
pem = ["alloc", "der/pem"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|