-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
34 lines (29 loc) · 837 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
32
33
34
[package]
name = "llhd"
version = "0.16.0"
authors = ["Fabian Schuiki <[email protected]>"]
edition = "2018"
description = "A Low Level Hardware Description that acts as a foundation for building hardware design tools."
repository = "https://github.com/fabianschuiki/llhd"
readme = "README.md"
license = "Apache-2.0 OR MIT"
homepage = "http://llhd.io/"
[badges]
travis-ci = { repository = "fabianschuiki/llhd", branch = "master" }
[dependencies]
anyhow = "1.0"
bitflags = "1"
clap = "2"
hibitset = "0.6"
itertools = "0.9"
lalrpop-util = "0.19"
log = { version = "0.4", features = ["release_max_level_info"] }
num = { version = "0.3", features = ["serde"] }
rayon = "1.3"
regex = "1"
serde = { version = "1", features = ["derive", "rc"] }
pretty_env_logger = "0.4"
[dev-dependencies]
indoc = "1"
[profile.release]
debug = true