Bend/Cargo.toml

35 lines
696 B
TOML
Raw Normal View History

[package]
name = "hvm-lang"
version = "0.1.0"
edition = "2021"
[lib]
name = "hvm_lang"
[[bin]]
name = "hvm-lang"
required-features = ["cli"]
[features]
default = ["cli"]
2023-09-26 18:53:58 +03:00
cli = ["dep:clap", "dep:byte-unit"]
nums = []
[dependencies]
anyhow = "1.0.72"
ariadne = "0.3.0"
bimap = "0.6.3"
2023-09-26 18:53:58 +03:00
byte-unit = { version = "4.0.19", optional = true }
chumsky = "1.0.0-alpha.4"
clap = { version = "4.4.1", features = ["derive"], optional = true }
2023-09-04 18:51:26 +03:00
derive_more = "0.99.17"
hvm-core = { git = "https://github.com/HigherOrderCO/hvm-core.git" }
2023-09-21 05:23:49 +03:00
#hvm-core = { path = "../hvm-core/rust" }
itertools = "0.11.0"
logos = "0.13.0"
shrinkwraprs = "0.3.0"
[dev-dependencies]
pretty_assertions = "1.4.0"
walkdir = "2.3.3"