Files
not-python/Cargo.toml
Alek Ratzloff be9a659159 Add Bool builtin type, branches, and some more stuff
* obj::Bool builtin type is used for truthiness and decision-making
* Branches are compiled and seem to be working for basic integer
  comparison
* Updated version of Shredder to what is current as of writing
* CheckTruth VM instruction that will explicitly set the condition flag
* Probably some other stuff

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-11-06 16:57:25 -08:00

32 lines
614 B
TOML

[package]
name = "not-python"
version = "0.1.0"
authors = ["Alek Ratzloff <alekratz@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
cfgrammar = "0.9"
lrpar = "0.9"
lrlex = "0.9"
rerun_except = "0.1.2"
[dependencies]
cfgrammar = "0.9"
lrpar = "0.9"
lrlex = "0.9"
structopt = "0.3"
snafu = "0.6.6"
maplit = "1.0.2"
once_cell = "1.4.1"
#lazy_static = "1.4.0"
#regex = "1.3.7"
#derivative = "2.1.1"
[dependencies.shredder]
git = "https://github.com/Others/shredder"
rev = "c71335"
features = ["nightly-features"]