aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: c2b650f2bedfc7b396d5e1465dc189b6c3a6516c (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
[package]
name = "x509-cert"
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the X.509 Public Key Infrastructure Certificate
format as described in RFC 5280
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/formats/tree/master/x509"
categories = ["cryptography", "data-structures", "encoding", "no-std"]
keywords = ["crypto"]
readme = "README.md"
edition = "2021"
rust-version = "1.56"

[dependencies]
const-oid = { version = "0.9", features = ["db"], path = "../const-oid" }
der = { version = "0.6", features = ["derive", "alloc", "flagset"], path = "../der" }
flagset = { version = "0.4.3" }
spki = { version = "0.6", path = "../spki" }

[dev-dependencies]
hex-literal = "0.3"
rstest = "0.12.0"

[features]
alloc = ["der/alloc"]
std = ["der/std", "spki/std"]
pem = ["alloc", "der/pem"]

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