der 0.8.0-rc.1

Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with full support for heapless no_std targets
[dependencies.arbitrary]
features = ["derive"]
optional = true
version = "1.3"

[dependencies.bytes]
default-features = false
optional = true
version = "1"

[dependencies.const-oid]
optional = true
version = "0.10.0-rc.0"

[dependencies.der_derive]
optional = true
version = "0.8.0-rc.0"

[dependencies.flagset]
optional = true
version = "0.4.6"

[dependencies.pem-rfc7468]
features = ["alloc"]
optional = true
version = "1.0.0-rc.1"

[dependencies.time]
default-features = false
optional = true
version = "0.3.4"

[dependencies.zeroize]
default-features = false
optional = true
version = "1.8"

[dev-dependencies.hex-literal]
version = "0.4.1"

[dev-dependencies.proptest]
version = "1"

[features]
alloc = ["zeroize?/alloc"]
arbitrary = ["dep:arbitrary", "const-oid?/arbitrary", "std"]
bytes = ["dep:bytes", "alloc"]
derive = ["dep:der_derive"]
oid = ["dep:const-oid"]
pem = ["dep:pem-rfc7468", "alloc", "zeroize"]
real = []
std = ["alloc"]

[lib]
name = "der"
path = "src/lib.rs"

[package]
authors = ["RustCrypto Developers"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
description = """
Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with
full support for heapless no_std targets
"""
edition = "2021"
homepage = "https://github.com/RustCrypto/formats/tree/master/der"
keywords = ["asn1", "crypto", "itu", "pkcs"]
license = "Apache-2.0 OR MIT"
name = "der"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats"
rust-version = "1.71"
version = "0.8.0-rc.1"

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

[[test]]
name = "datetime"
path = "tests/datetime.rs"

[[test]]
name = "derive"
path = "tests/derive.rs"

[[test]]
name = "pem"
path = "tests/pem.rs"

[[test]]
name = "set_of"
path = "tests/set_of.rs"