This commit is contained in:
Matthieu Jolimaitre 2024-10-24 05:27:45 +02:00
commit da82c775db
9 changed files with 1066 additions and 0 deletions

22
Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[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"