Files
not-python/Cargo.toml
Alek Ratzloff 8e2cbb10a4 General changes across the runtime crate in support of compile module
* Compile module is able to compile bytecode (or so it seems...)
* Runtime crate has had some new stuff added to it, mostly with objects
  and vtables. Still not 100% on the object method function call story,
  but I guess it'll be tackled when we get there.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-09-14 14:09:29 -07:00

27 lines
480 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"
[dependencies]
cfgrammar = "0.9"
lrpar = "0.9"
lrlex = "0.9"
structopt = "0.3"
snafu = "0.6.6"
#lazy_static = "1.4.0"
#regex = "1.3.7"
#derivative = "2.1.1"
[dependencies.runtime]
path = "runtime"