microlang/Cargo.toml

26 lines
488 B
TOML

[package]
name = "microlang"
version = "0.1.0"
edition = "2021"
[dependencies]
chumsky = { version = "0.9.3", default-features = false, features = [
"ahash",
"spill-stack",
] }
hashbrown = { version = "0.15.0", default-features = true, features = [
# "core",
# "alloc",
# "inline-more",
# "equivalent",
# "default-hasher",
] }
backtrace-on-stack-overflow = "0.3.0"
[[bin]]
name = "repl"
path = "example/repl.rs"
[[bin]]
name = "run"
path = "example/run.rs"