Bend/Cargo.toml

41 lines
758 B
TOML
Raw Normal View History

[package]
name = "bend"
2024-05-15 22:28:02 +03:00
version = "0.2.2"
edition = "2021"
[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]
TSPL = { git = "https://github.com/developedby/TSPL.git", branch = "fix-hvml-bugs" }
clap = { version = "4.4.1", features = ["derive"], optional = true }
highlight_error = "0.1.1"
2024-04-22 20:03:56 +03:00
hvm-core = { git = "https://github.com/HigherOrderCO/hvm-core.git", branch = "hvm32-compat" }
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