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 = "x509-parser" 15version = "0.12.0" 16authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"] 17include = ["CHANGELOG.md", "LICENSE-*", "README.md", ".gitignore", ".travis.yml", "Cargo.toml", "src/*.rs", "tests/*.rs", "assets/*.crl", "assets/*.csr", "assets/*.der", "assets/*.pem", "assets/crl-ext/*.der", "examples/*.rs"] 18description = "Parser for the X.509 v3 format (RFC 5280 certificates)" 19homepage = "https://github.com/rusticata/x509-parser" 20readme = "README.md" 21keywords = ["X509", "Certificate", "parser", "nom"] 22categories = ["parser-implementations", "cryptography"] 23license = "MIT/Apache-2.0" 24repository = "https://github.com/rusticata/x509-parser.git" 25[package.metadata.docs.rs] 26all-features = true 27rustdoc-args = ["--cfg", "docsrs"] 28[dependencies.base64] 29version = "0.13" 30 31[dependencies.chrono] 32version = "0.4" 33features = ["std"] 34default-features = false 35 36[dependencies.data-encoding] 37version = "2.2.1" 38 39[dependencies.der-parser] 40version = "6.0.0" 41features = ["bigint"] 42 43[dependencies.lazy_static] 44version = "1.4" 45 46[dependencies.nom] 47version = "7.0" 48 49[dependencies.oid-registry] 50version = "0.2.0" 51features = ["crypto", "x509"] 52 53[dependencies.ring] 54version = "0.16" 55optional = true 56 57[dependencies.rusticata-macros] 58version = "4.0" 59 60[dependencies.thiserror] 61version = "1.0" 62 63[features] 64default = [] 65validate = [] 66verify = ["ring"] 67