forked from calyxir/calyx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 949 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
41
42
[package]
name = "futil"
version = "0.1.2"
authors = ["The Calyx Team"]
edition = "2021"
build = false
license-file = "LICENSE"
keywords = ["ir", "compiler"]
repository = "https://github.com/cucapra/calyx"
readme = "README.md"
description = "Compiler Infrastructure for Hardware Accelerator Generation"
categories = ["compilers"]
[dependencies]
calyx = { path = "calyx", version = "0.1.0" }
pest = "2.0"
itertools = "0.9.0"
atty = "0.2.14"
argh = "0.1"
vast = "0.3.0"
serde = "1.0.129"
quick-xml = { version = "0.22.0", default-features = false, features = ["serialize"] }
log = "0.4.14"
[dependencies.env_logger]
version = "0.9.0"
features = ["termcolor", "atty"]
default-features = false
[workspace]
members = ["calyx", "interp", "web/rust", "tools/data_gen"]
exclude = ["site"]
[profile.release]
lto = true
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "component-sharing"
harness = false