Bend/Cargo.toml

44 lines
725 B
TOML
Raw Normal View History

[package]
2024-05-15 22:45:48 +03:00
name = "bend-lang"
description = "A parallel language"
license = "Apache-2.0"
version = "0.2.7"
edition = "2021"
2024-05-17 19:24:47 +03:00
exclude = ["tests/snapshots/"]
[lib]
name = "bend"
2023-11-12 22:53:29 +03:00
path = "src/lib.rs"
[[bin]]
name = "bend"
2023-11-12 22:53:29 +03:00
path = "src/main.rs"
required-features = ["cli"]
2023-10-17 12:35:13 +03:00
[profile.release]
lto = true
[features]
default = ["cli"]
2023-11-09 21:11:23 +03:00
cli = ["dep:clap"]
[dependencies]
2024-05-15 22:45:48 +03:00
TSPL = "0.0.12"
clap = { version = "4.4.1", features = ["derive"], optional = true }
highlight_error = "0.1.1"
2024-05-16 00:01:07 +03:00
hvm-core = "=0.3.0-hvm32.compat.2"
indexmap = "2.2.3"
interner = "0.2.1"
itertools = "0.11.0"
2024-04-19 19:18:10 +03:00
loaned = "0.1.0"
2024-04-11 17:10:13 +03:00
parking_lot = "0.12.1"
2024-02-28 21:00:48 +03:00
stacker = "0.1"
[dev-dependencies]
insta = "1.34.0"
stdext = "0.3.1"
walkdir = "2.3.3"
[profile.test]
opt-level = 2