mirror of
https://github.com/HigherOrderCO/Bend.git
synced 2024-11-04 01:20:56 +03:00
41 lines
758 B
TOML
41 lines
758 B
TOML
[package]
|
|
name = "bend"
|
|
version = "0.2.1"
|
|
edition = "2021"
|
|
|
|
[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 = { 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"
|
|
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"
|
|
loaned = "0.1.0"
|
|
parking_lot = "0.12.1"
|
|
stacker = "0.1"
|
|
|
|
[dev-dependencies]
|
|
insta = "1.34.0"
|
|
stdext = "0.3.1"
|
|
walkdir = "2.3.3"
|
|
|
|
[profile.test]
|
|
opt-level = 2
|