blob: bd75632c0b76e9aff15d874786f9efe9bb1f6ea9 [file] [log] [blame]
Yiming Jing6ea24ae2021-07-22 13:50:52 -07001# 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 Galenson5e6c68c2021-09-23 14:06:09 -07006# to registry (e.g., crates.io) dependencies.
Yiming Jing6ea24ae2021-07-22 13:50:52 -07007#
Joel Galenson5e6c68c2021-09-23 14:06:09 -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.
Yiming Jing6ea24ae2021-07-22 13:50:52 -070011
12[package]
13edition = "2018"
14name = "x509-parser"
Joel Galenson5e6c68c2021-09-23 14:06:09 -070015version = "0.12.0"
Yiming Jing6ea24ae2021-07-22 13:50:52 -070016authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
Joel Galenson5e6c68c2021-09-23 14:06:09 -070017include = ["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"]
Yiming Jing6ea24ae2021-07-22 13:50:52 -070018description = "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]
Joel Galenson5e6c68c2021-09-23 14:06:09 -070040version = "6.0.0"
Yiming Jing6ea24ae2021-07-22 13:50:52 -070041features = ["bigint"]
42
43[dependencies.lazy_static]
44version = "1.4"
45
46[dependencies.nom]
Joel Galenson5e6c68c2021-09-23 14:06:09 -070047version = "7.0"
Yiming Jing6ea24ae2021-07-22 13:50:52 -070048
49[dependencies.oid-registry]
Joel Galenson5e6c68c2021-09-23 14:06:09 -070050version = "0.2.0"
Yiming Jing6ea24ae2021-07-22 13:50:52 -070051features = ["crypto", "x509"]
52
53[dependencies.ring]
54version = "0.16"
55optional = true
56
57[dependencies.rusticata-macros]
Joel Galenson5e6c68c2021-09-23 14:06:09 -070058version = "4.0"
Yiming Jing6ea24ae2021-07-22 13:50:52 -070059
Yiming Jing6ea24ae2021-07-22 13:50:52 -070060[dependencies.thiserror]
61version = "1.0"
62
63[features]
64default = []
Joel Galenson1d906392021-08-11 15:58:47 +000065validate = []
Yiming Jing6ea24ae2021-07-22 13:50:52 -070066verify = ["ring"]