-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
89 lines (81 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[workspace]
members = [
"pulsar-frontend",
"pulsar-ir",
"pulsar-backend",
"pulsar-utils",
"calyx-builder",
]
[workspace.package]
description = "A high-level programming language for building hardware accelerators"
homepage = "https://github.com/ethanuppal/pulsar/tree/main"
repository = "https://github.com/ethanuppal/pulsar/tree/main"
authors = ["Ethan Uppal"]
keywords = ["compiler"]
categories = ["compilers"]
version = "0.0.0"
edition = "2021"
rust-version = "1.78"
license-file = "LICENSE"
[workspace.dependencies]
colored = "2"
lazy_static = "1.4.0"
calyx-backend = "0.7.1"
calyx-frontend = "0.7.1"
calyx-ir = "0.7.1"
calyx-opt = "0.7.1"
calyx-utils = "0.7.1"
pulsar-utils = { path = "pulsar-utils", version = "0.0.0" }
pulsar-ir = { path = "pulsar-ir", version = "0.0.0" }
pulsar-frontend = { path = "pulsar-frontend", version = "0.0.0" }
pulsar-backend = { path = "pulsar-backend", version = "0.0.0" }
calyx-builder = { path = "calyx-builder", version = "0.0.0" }
inform = "0.1.0"
serde = "1.0.204"
serde_json = "1.0.120"
memmap2 = "0.9.4"
log = { version = "0.4.22", features = ["release_max_level_off"] }
env_logger = "0.11.3"
either = "1.13.0"
match_deref = "0.1.1"
anyhow = "1.0.86"
[package]
name = "pulsar-lang"
default-run = "pulsar"
version.workspace = true
edition.workspace = true
description.workspace = true
authors.workspace = true
license-file.workspace = true
keywords.workspace = true
repository.workspace = true
homepage.workspace = true
categories.workspace = true
readme.workspace = true
rust-version.workspace = true
[[bin]]
name = "pulsar"
path = "src/main.rs"
[features]
disable_color = ["colored/no-color"]
[dependencies]
colored.workspace = true
lazy_static.workspace = true
calyx-utils.workspace = true
calyx-ir.workspace = true
calyx-frontend.workspace = true
calyx-opt.workspace = true
pulsar-frontend.workspace = true
pulsar-ir.workspace = true
pulsar-backend.workspace = true
pulsar-utils.workspace = true
log.workspace = true
env_logger.workspace = true
anyhow.workspace = true
paste = "1.0.15"
[dev-dependencies]
proptest = "1.4.0"
insta = { version = "1.38.0" }
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3