-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
64 lines (56 loc) · 1.56 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
53
54
55
56
57
58
59
60
61
62
63
64
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["The Filament Team"]
license-file = "LICENSE"
keywords = ["hdl", "hardware design"]
repository = "https://github.com/cucapra/filament"
readme = "README.md"
description = "A language for Fearless Hardware Design"
categories = ["compilers"]
homepage = "https://filamenthdl.com"
edition = "2021"
version = "0.1.0"
rust-version = "1.67"
[workspace.dependencies]
toml = "0.8"
serde = "1.0"
argh = "0.1"
log = "0.4"
pest = "2.1"
pest_consume = "1.1"
pest_derive = "2.1"
linked_hash_set = "0.1"
itertools = "0.10"
linked-hash-map = "0.5"
derivative = "2.2"
smallvec = "1"
topological-sort = "0.2"
atty = "0.2"
lazy_static = "1.4"
easy-smt = { version = "0.2.1" }
struct-variant = "1.0"
fil-utils = { version = "0.1.0", path = "crates/utils" }
fil-ast = { version = "0.1.0", path = "crates/ast" }
fil-ir = { version = "0.1.0", path = "crates/ir" }
fil-derive = { version = "0.1.0", path = "crates/derive" }
fil-gen = { version = "0.1.0", path = "crates/gen" }
calyx-ir = { version = "0.7.1" }
calyx-frontend = { version = "0.7.1" }
calyx-utils = { version = "0.7.1" }
calyx-opt = { version = "0.7.1" }
calyx-backend = { version = "0.7.1" }
[workspace.dependencies.env_logger]
version = "0.9"
features = ["termcolor", "atty"]
default-features = false
[workspace.dependencies.codespan-reporting]
version = "0.11"
features = ["ascii-only"]
[workspace.dependencies.string-interner]
version = "0.14"
features = ["backends", "std", "inline-more"]
[workspace.dependencies.bitvec]
version = "1.0.1"
features = ["alloc"]