-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
65 lines (59 loc) · 1.41 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
description = "Parser/encoder for ASN.1 BER/DER data"
license = "MIT OR Apache-2.0"
keywords = ["BER","DER","ASN1","parser","nom"]
homepage = "https://github.com/rusticata/der-parser"
repository = "https://github.com/rusticata/der-parser.git"
name = "der-parser"
version = "9.0.0"
authors = ["Pierre Chifflier <[email protected]>"]
categories = ["parser-implementations"]
readme = "README.md"
edition = "2018"
rust-version = "1.63"
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",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
asn1-rs = "0.6"
bitvec = { version="1.0", optional=true }
cookie-factory = { version="0.3.0", optional=true }
displaydoc = { version="0.2", default-features=false }
nom = "7.0"
rusticata-macros = "4.0"
num-traits = "0.2"
num-bigint = { version = "0.4", optional = true }
[features]
default = ["std"]
as_bitvec = ["bitvec"]
bigint = ["num-bigint"]
serialize = ["std", "cookie-factory"]
unstable = []
std = []
[dev-dependencies]
hex-literal = "0.4"
pretty_assertions = "1.0"
test-case = "3.0"
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"asn1_rs",
"asn1_rs::*",
"nom",
"nom::*",
"rusticata_macros",
]