forked from abs-tudelft/tydi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (27 loc) · 795 Bytes
/
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
[package]
name = "tydi"
version = "0.0.7"
description = "An HDL code generation utility for components described using the Tydi open specification."
authors = ["Johan Peltenburg", "Jeroen van Straten", "Matthijs Brobbel"]
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
documentation = "http://docs.rs/tydi/"
homepage = "https://abs-tudelft.github.io/tydi/"
repository = "https://github.com/abs-tudelft/tydi"
[[bin]]
name = "tydi"
required-features = ["cli"]
[features]
cli = ["structopt", "parser"]
default = ["generator", "parser"]
generator = []
parser = ["nom"]
[dependencies]
log = "0.4"
colored = "1.9.3"
indexmap = "1.3"
structopt = { version = "0.3", optional = true, default-features = false }
nom = { version = "5", optional = true }
[dev-dependencies]
tempfile = "3"