• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "der"
3version = "0.6.1"
4description = """
5Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules
6(DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with
7full support for heapless no_std targets
8"""
9authors = ["RustCrypto Developers"]
10license = "Apache-2.0 OR MIT"
11repository = "https://github.com/RustCrypto/formats/tree/master/der"
12categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
13keywords = ["asn1", "crypto", "itu", "pkcs"]
14readme = "README.md"
15edition = "2021"
16rust-version = "1.57"
17
18[dependencies]
19const-oid = { version = "0.9", optional = true, path = "../const-oid" }
20der_derive = { version = "0.6", optional = true, path = "derive" }
21flagset = { version = "0.4.3", optional = true }
22pem-rfc7468 = { version = "0.6", optional = true, path = "../pem-rfc7468" }
23time = { version = "0.3.4", optional = true, default-features = false }
24zeroize = { version = "1.5", optional = true, default-features = false, features = ["alloc"] }
25
26[dev-dependencies]
27hex-literal = "0.3.3"
28proptest = "1"
29
30[features]
31alloc = []
32derive = ["der_derive"]
33oid = ["const-oid"]
34pem = ["alloc", "pem-rfc7468/alloc", "zeroize"]
35real = []
36std = ["alloc"]
37
38[package.metadata.docs.rs]
39all-features = true
40rustdoc-args = ["--cfg", "docsrs"]
41