Initial commit
* Parser, compiler, objects, and VM base implementations * Stuff will print out, functions called, etc * There are probably plenty of bugs but this is a good starting point to start committing changes into git Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
14
Cargo.toml
Normal file
14
Cargo.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[package]
|
||||
name = "not-python"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[build-dependencies]
|
||||
lalrpop = "0.19.9"
|
||||
|
||||
[dependencies]
|
||||
lalrpop-util = { version = "0.19.9", features = ["lexer"] }
|
||||
gc = { version = "0.4", features = ["derive", "nightly"] }
|
||||
regex = "1"
|
||||
structopt = "0.3.26"
|
||||
Reference in New Issue
Block a user