Bend/Cargo.toml

37 lines
718 B
TOML
Raw Normal View History

[package]
name = "hvm-lang"
version = "0.1.0"
edition = "2021"
[lib]
name = "hvml"
2023-11-12 22:53:29 +03:00
path = "src/lib.rs"
[[bin]]
name = "hvml"
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-02-15 17:54:38 +03:00
# Later versions of the alpha contains bugs that changes the parser errors
chumsky = { version = "= 1.0.0-alpha.4", features = ["label"] }
clap = { version = "4.4.1", features = ["derive"], optional = true }
highlight_error = "0.1.1"
hvm-core = { git = "https://github.com/HigherOrderCO/hvm-core" }
indexmap = "2.2.3"
interner = "0.2.1"
itertools = "0.11.0"
2024-02-15 17:54:38 +03:00
logos = "0.14.0"
[dev-dependencies]
insta = "1.34.0"
stdext = "0.3.1"
walkdir = "2.3.3"