31 lines
558 B
TOML
31 lines
558 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 = false, features = [
|
|
# "core",
|
|
# "alloc",
|
|
# "inline-more",
|
|
# "equivalent",
|
|
"default-hasher",
|
|
] }
|
|
libm = "0.2.8"
|
|
# backtrace-on-stack-overflow = "0.3.0"
|
|
|
|
[[bin]]
|
|
name = "repl"
|
|
path = "example/repl.rs"
|
|
|
|
[[bin]]
|
|
name = "run"
|
|
path = "example/run.rs"
|
|
|
|
[[bin]]
|
|
name = "no_std"
|
|
path = "example/no_std.rs"
|