forked from librasn/rasn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (45 loc) · 1.44 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
[package]
name = "rasn"
version = "0.6.1"
categories = ["encoding", "no-std", "parser-implementations"]
authors = ["Erin Power <xampprocky@gmail.com>"]
edition = "2018"
description = "A safe no_std ASN.1 codec framework."
license = "MIT/Apache-2.0"
exclude = ["fuzzing"]
keywords = ["asn1", "der", "ber", "cer", "per"]
repository = "https://github.com/XAMPPRocky/rasn.git"
[lib]
bench = false
[workspace]
members = [".", "macros", "standards/*", "compiler", "compiler/pest"]
exclude = ["fuzzing"]
[features]
default = ["macros"]
macros = ["rasn-derive"]
[[bench]]
name = "criterion"
path = "benches/criterion.rs"
harness = false
test = true
[[bench]]
name = "iai"
path = "benches/iai.rs"
harness = false
[dependencies]
nom = { version = "7.0.0", default-features = false, features = ["alloc"] }
num-bigint = { version = "0.4.2", default-features = false }
num-traits = { version = "0.2.14", default-features = false }
snafu = { version = "0.7", default-features = false }
bytes = { version = "1.1.0", default-features = false }
bitvec = { version = "1", default-features = false, features = ["alloc"] }
rasn-derive = { version = "0.6.0", path = "macros", optional = true }
chrono = { version = "0.4.19", default-features = false, features = ["alloc"] }
konst = { version = "0.2.13", default-features = false }
[dev-dependencies]
criterion = "0.3.5"
iai = "0.1.1"
once_cell = "1.8.0"
pretty_assertions = "1.1"
rasn-pkix = { path = "standards/pkix" }
x509-parser = "0.13.0"