67 lines
1.8 KiB
TOML
67 lines
1.8 KiB
TOML
# 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 = "x509-parser"
|
|
version = "0.12.0"
|
|
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
|
|
include = ["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"]
|
|
description = "Parser for the X.509 v3 format (RFC 5280 certificates)"
|
|
homepage = "https://github.com/rusticata/x509-parser"
|
|
readme = "README.md"
|
|
keywords = ["X509", "Certificate", "parser", "nom"]
|
|
categories = ["parser-implementations", "cryptography"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/rusticata/x509-parser.git"
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
[dependencies.base64]
|
|
version = "0.13"
|
|
|
|
[dependencies.chrono]
|
|
version = "0.4"
|
|
features = ["std"]
|
|
default-features = false
|
|
|
|
[dependencies.data-encoding]
|
|
version = "2.2.1"
|
|
|
|
[dependencies.der-parser]
|
|
version = "6.0.0"
|
|
features = ["bigint"]
|
|
|
|
[dependencies.lazy_static]
|
|
version = "1.4"
|
|
|
|
[dependencies.nom]
|
|
version = "7.0"
|
|
|
|
[dependencies.oid-registry]
|
|
version = "0.2.0"
|
|
features = ["crypto", "x509"]
|
|
|
|
[dependencies.ring]
|
|
version = "0.16"
|
|
optional = true
|
|
|
|
[dependencies.rusticata-macros]
|
|
version = "4.0"
|
|
|
|
[dependencies.thiserror]
|
|
version = "1.0"
|
|
|
|
[features]
|
|
default = []
|
|
validate = []
|
|
verify = ["ring"]
|