Bend/Cargo.toml

38 lines
790 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", "nums"]
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" }
#hvmc = { path = "../hvm-core/" }
itertools = "0.11.0"
logos = "0.13.0"
miette = { version = "5.10.0", features = ["fancy"] }
shrinkwraprs = "0.3.0"
thiserror = "1.0.49"
[dev-dependencies]
pretty_assertions = "1.4.0"
stdext = "0.3.1"
walkdir = "2.3.3"