diff options
Diffstat (limited to 'rust/vendor/der-parser/Cargo.toml')
-rw-r--r-- | rust/vendor/der-parser/Cargo.toml | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/rust/vendor/der-parser/Cargo.toml b/rust/vendor/der-parser/Cargo.toml new file mode 100644 index 0000000..bf192be --- /dev/null +++ b/rust/vendor/der-parser/Cargo.toml @@ -0,0 +1,94 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2018" +name = "der-parser" +version = "8.2.0" +authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"] +include = [ + "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", +] +description = "Parser/encoder for ASN.1 BER/DER data" +homepage = "https://github.com/rusticata/der-parser" +readme = "README.md" +keywords = [ + "BER", + "DER", + "ASN1", + "parser", + "nom", +] +categories = ["parser-implementations"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rusticata/der-parser.git" + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = [ + "--cfg", + "docsrs", +] + +[dependencies.asn1-rs] +version = "0.5" + +[dependencies.cookie-factory] +version = "0.3.0" +optional = true + +[dependencies.displaydoc] +version = "0.2" +default-features = false + +[dependencies.nom] +version = "7.0" + +[dependencies.num-bigint] +version = "0.4" +optional = true + +[dependencies.num-traits] +version = "0.2" + +[dependencies.rusticata-macros] +version = "4.0" + +[dev-dependencies.hex-literal] +version = "0.3" + +[dev-dependencies.pretty_assertions] +version = "1.0" + +[dev-dependencies.test-case] +version = "3.0" + +[features] +bigint = ["num-bigint"] +default = ["std"] +serialize = [ + "std", + "cookie-factory", +] +std = [] +unstable = [] |