diff options
Diffstat (limited to 'rust/vendor/asn1-rs/Cargo.toml')
-rw-r--r-- | rust/vendor/asn1-rs/Cargo.toml | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/rust/vendor/asn1-rs/Cargo.toml b/rust/vendor/asn1-rs/Cargo.toml new file mode 100644 index 0000000..57a55b8 --- /dev/null +++ b/rust/vendor/asn1-rs/Cargo.toml @@ -0,0 +1,127 @@ +# 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" +rust-version = "1.53" +name = "asn1-rs" +version = "0.5.2" +authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"] +include = [ + "CHANGELOG.md", + "LICENSE-*", + "README.md", + ".gitignore", + "Cargo.toml", + "doc/*.md", + "examples/*.rs", + "src/*.rs", + "src/asn1_types/*.rs", + "src/asn1_types/real/*.rs", + "src/asn1_types/sequence/*.rs", + "src/asn1_types/set/*.rs", + "src/asn1_types/strings/*.rs", + "src/asn1_types/tagged/*.rs", + "src/ber/*.rs", + "src/doc/*.rs", + "tests/*.rs", +] +description = "Parser/encoder for ASN.1 BER/DER data" +homepage = "https://github.com/rusticata/asn1-rs" +readme = "README.md" +keywords = [ + "BER", + "DER", + "ASN1", + "parser", + "nom", +] +categories = ["parser-implementations"] +license = "MIT/Apache-2.0" +repository = "https://github.com/rusticata/asn1-rs.git" + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = [ + "--cfg", + "docsrs", +] + +[dependencies.asn1-rs-derive] +version = "0.4" + +[dependencies.asn1-rs-impl] +version = "0.1" + +[dependencies.bitvec] +version = "1.0" +optional = true + +[dependencies.cookie-factory] +version = "0.3.0" +optional = true + +[dependencies.displaydoc] +version = "0.2.2" + +[dependencies.nom] +version = "7.0" +features = ["std"] +default_features = false + +[dependencies.num-bigint] +version = "0.4" +optional = true + +[dependencies.num-traits] +version = "0.2.14" + +[dependencies.rusticata-macros] +version = "4.0" + +[dependencies.thiserror] +version = "1.0.25" + +[dependencies.time] +version = "0.3" +features = [ + "macros", + "parsing", + "formatting", +] +optional = true + +[dev-dependencies.colored] +version = "2.0" + +[dev-dependencies.hex-literal] +version = "0.3.1" + +[dev-dependencies.oid-registry] +version = "0.6" +features = [ + "crypto", + "x509", +] + +[dev-dependencies.pem] +version = "1.0" + +[dev-dependencies.trybuild] +version = "1.0" + +[features] +bigint = ["num-bigint"] +bits = ["bitvec"] +datetime = ["time"] +default = ["std"] +serialize = ["cookie-factory"] +std = [] |