der-parser 10.0.0

Parser/encoder for ASN.1 BER/DER data
Documentation
[dependencies.asn1-rs]
version = "0.7"

[dependencies.bitvec]
optional = true
version = "1.0"

[dependencies.cookie-factory]
optional = true
version = "0.3.0"

[dependencies.displaydoc]
default-features = false
version = "0.2"

[dependencies.nom]
version = "7.0"

[dependencies.num-bigint]
optional = true
version = "0.4"

[dependencies.num-traits]
version = "0.2"

[dependencies.rusticata-macros]
version = "4.0"

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

[dev-dependencies.pretty_assertions]
version = "1.0"

[dev-dependencies.test-case]
version = "3.0"

[[example]]
name = "dump-der"
path = "examples/dump-der.rs"

[features]
as_bitvec = ["bitvec"]
bigint = ["num-bigint"]
default = ["std"]
serialize = ["std", "cookie-factory"]
std = []
unstable = []

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

[package]
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parser-implementations"]
description = "Parser/encoder for ASN.1 BER/DER data"
edition = "2018"
homepage = "https://github.com/rusticata/der-parser"
include = ["LICENSE-*", "CHANGELOG.md", "README.md", "UPGRADING.md", ".gitignore", "Cargo.toml", "examples/*.rs", "src/*.rs", "src/ber/*.rs", "src/der/*.rs", "tests/*.rs", "der-oid-macro/Cargo.toml", "der-oid-macro/src/*.rs"]
keywords = ["BER", "DER", "ASN1", "parser", "nom"]
license = "MIT OR Apache-2.0"
name = "der-parser"
readme = "README.md"
repository = "https://github.com/rusticata/der-parser.git"
rust-version = "1.63"
version = "10.0.0"

[package.metadata.cargo_check_external_types]
allowed_external_types = ["asn1_rs", "asn1_rs::*", "nom", "nom::*", "rusticata_macros"]

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

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

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

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

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

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

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

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

[[test]]
name = "issue-76"
path = "tests/issue-76.rs"

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

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