forked from HigherOrderCO/Bend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 730 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (36 loc) · 730 Bytes
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
[package]
name = "bend-lang"
description = "A high-level, massively parallel programming language"
license = "Apache-2.0"
version = "0.2.38"
edition = "2021"
rust-version = "1.74"
exclude = ["tests/"]
[lib]
name = "bend"
path = "src/lib.rs"
[[bin]]
name = "bend"
path = "src/main.rs"
required-features = ["cli"]
[profile.release]
lto = true
[features]
default = ["cli"]
cli = ["dep:clap"]
[dependencies]
TSPL = "0.0.13"
clap = { version = "4.4.1", features = ["derive"], optional = true }
highlight_error = "0.1.1"
hvm = "=2.0.22"
indexmap = "2.2.3"
interner = "0.2.1"
itertools = "0.11.0"
loaned = "0.1.0"
stacker = "0.1"
[dev-dependencies]
insta = "1.34.0"
stdext = "0.3.1"
walkdir = "2.3.3"
[profile.test]
opt-level = 2