1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "der-parser" 15version = "6.0.0" 16authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"] 17include = ["LICENSE-*", "CHANGELOG.md", "README.md", "UPGRADING.md", ".gitignore", "Cargo.toml", "bench/*.rs", "src/*.rs", "src/ber/*.rs", "src/der/*.rs", "tests/*.rs", "der-oid-macro/Cargo.toml", "der-oid-macro/src/*.rs"] 18description = "Parser/encoder for ASN.1 BER/DER data" 19homepage = "https://github.com/rusticata/der-parser" 20readme = "README.md" 21keywords = ["BER", "DER", "ASN1", "parser", "nom"] 22categories = ["parser-implementations"] 23license = "MIT/Apache-2.0" 24repository = "https://github.com/rusticata/der-parser.git" 25[package.metadata.docs.rs] 26all-features = true 27rustdoc-args = ["--cfg", "docsrs"] 28[dependencies.bitvec] 29version = "0.22" 30optional = true 31 32[dependencies.cookie-factory] 33version = "0.3.0" 34optional = true 35 36[dependencies.der-oid-macro] 37version = "0.5" 38 39[dependencies.nom] 40version = "7.0" 41 42[dependencies.num-bigint] 43version = "0.4" 44optional = true 45 46[dependencies.num-traits] 47version = "0.2" 48 49[dependencies.rusticata-macros] 50version = "4.0" 51[dev-dependencies.hex-literal] 52version = "0.3" 53 54[dev-dependencies.pretty_assertions] 55version = "0.7" 56 57[dev-dependencies.test-case] 58version = "1.0" 59 60[features] 61bigint = ["num-bigint"] 62default = ["std"] 63serialize = ["std", "cookie-factory"] 64std = [] 65unstable = [] 66