blob: 55418dc8d21a05acd2b310ddc36ef7927d01ff84 [file] [log] [blame]
Joel Galenson4b3485a2021-08-11 15:58:47 +00001# 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
Joel Galenson2f8979a2021-09-27 08:56:35 -07006# to registry (e.g., crates.io) dependencies.
Joel Galenson4b3485a2021-08-11 15:58:47 +00007#
Joel Galenson2f8979a2021-09-27 08:56:35 -07008# 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.
Joel Galenson4b3485a2021-08-11 15:58:47 +000011
Yiming Jing588f7832021-07-16 14:04:03 -070012[package]
Joel Galenson1eb5e2b2021-08-11 14:44:14 +000013edition = "2018"
Joel Galenson4b3485a2021-08-11 15:58:47 +000014name = "der-parser"
Joel Galenson2f8979a2021-09-27 08:56:35 -070015version = "6.0.0"
Joel Galenson4b3485a2021-08-11 15:58:47 +000016authors = ["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"
Yiming Jing588f7832021-07-16 14:04:03 -070025[package.metadata.docs.rs]
26all-features = true
27rustdoc-args = ["--cfg", "docsrs"]
Joel Galenson2f8979a2021-09-27 08:56:35 -070028[dependencies.bitvec]
29version = "0.22"
30optional = true
31
Joel Galenson4b3485a2021-08-11 15:58:47 +000032[dependencies.cookie-factory]
33version = "0.3.0"
34optional = true
Yiming Jing588f7832021-07-16 14:04:03 -070035
Joel Galenson4b3485a2021-08-11 15:58:47 +000036[dependencies.der-oid-macro]
Joel Galenson2f8979a2021-09-27 08:56:35 -070037version = "0.5"
Yiming Jing588f7832021-07-16 14:04:03 -070038
Joel Galenson4b3485a2021-08-11 15:58:47 +000039[dependencies.nom]
Joel Galenson2f8979a2021-09-27 08:56:35 -070040version = "7.0"
Joel Galenson4b3485a2021-08-11 15:58:47 +000041
42[dependencies.num-bigint]
43version = "0.4"
44optional = true
45
46[dependencies.num-traits]
47version = "0.2"
48
49[dependencies.rusticata-macros]
Joel Galenson2f8979a2021-09-27 08:56:35 -070050version = "4.0"
Joel Galenson4b3485a2021-08-11 15:58:47 +000051[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"
Yiming Jing588f7832021-07-16 14:04:03 -070059
60[features]
Yiming Jing588f7832021-07-16 14:04:03 -070061bigint = ["num-bigint"]
Joel Galenson2f8979a2021-09-27 08:56:35 -070062default = ["std"]
63serialize = ["std", "cookie-factory"]
64std = []
Yiming Jing588f7832021-07-16 14:04:03 -070065unstable = []