-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
40 lines (33 loc) · 968 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
35
36
37
38
39
40
[package]
name = "moore"
version = "0.14.0"
authors = ["Fabian Schuiki <[email protected]>"]
edition = "2018"
description = "A compiler for hardware description languages."
repository = "https://github.com/fabianschuiki/moore"
readme = "README.md"
license = "Apache-2.0 OR MIT"
exclude = ["/test", "/circt"]
[badges]
travis-ci = { repository = "fabianschuiki/moore", branch = "master" }
[workspace]
[dependencies]
moore-common = { path = "src/common", version = "0.14.0" }
moore-derive = { path = "src/derive", version = "0.14.0" }
moore-svlog = { path = "src/svlog", version = "0.14.0" }
moore-vhdl = { path = "src/vhdl", version = "0.14.0" }
moore-circt = { path = "src/circt", version = "0.14.0" }
clap = "2"
llhd = "0.16"
# llhd = { git = "https://github.com/fabianschuiki/llhd" }
num = "0.3"
serde = "1"
typed-arena = "2.0.1"
log = "0.4"
pretty_env_logger = "0.4"
[features]
unstable = []
[[bin]]
doc = false
name = "moore"
path = "src/bin/moore.rs"