-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
50 lines (45 loc) · 1.21 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
[package]
name = "asn1-compiler"
version = "0.7.0"
authors = ["Ystero Project Developers <[email protected]>"]
edition = "2018"
description = "Compiler for compiling ASN.1 specs to Rust, with PER Codec support and derive macros for PER Codecs."
keywords = ["asn1", "per"]
repository = "https://github.com/gabhijit/hampi.git"
homepage = "https://ystero.dev"
license = "Apache-2.0 OR MIT"
readme = "README.md"
include = [
"tests/**/*.rs",
"src/**/*.rs",
"README.md",
"ARCHITECTURE.md",
"Cargo.toml",
"LICENSE",
"LICENSE-MIT",
"LICENSE-Apache2"
]
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
lazy_static = { version = "1.4.0" }
topological-sort = { version = "0.2" }
proc-macro2 = { version = "1.0" }
quote = { version = "1.0" }
heck = { version = "0.4" }
bitvec = { version = "1.0" }
clap = { version = "4.4", features = ["derive"] }
docx-rs = { version = "0.4.5" , optional = true }
regex = { version = "1.6.0" }
log = { version = "0.4" }
env_logger = { version = "0.10" }
anyhow = "1.0.86"
[features]
rs-specs-gen = [ "docx-rs"]
[[bin]]
name = "rs-asn1c"
path = "src/bin/hampi-rs-asn1c.rs"
[[bin]]
name = "extract-asn-spec"
required-features = ["rs-specs-gen"]
path = "src/bin/extract-asn-spec.rs"