init
This commit is contained in:
commit
da82c775db
9 changed files with 1066 additions and 0 deletions
22
Cargo.toml
Normal file
22
Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue