aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: bb49bd8f43ad2db23a10a95ae2fcd1d938617d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "spki"
version = "0.6.0"
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.57"

[dependencies]
der = { version = "0.6", features = ["oid"], path = "../der" }

# Optional dependencies
sha2 = { version = "0.10", optional = true, default-features = false }
base64ct = { version = "1", path = "../base64ct", optional = true, default-features = false }

[dev-dependencies]
hex-literal = "0.3"
tempfile = "3"

[features]
alloc = ["base64ct?/alloc", "der/alloc"]
fingerprint = ["sha2"]
pem = ["alloc", "der/pem"]
std = ["der/std", "alloc"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]