From c25a3b5e2b0555984aa2bcc37acd9178ceb86e97 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Wed, 2 Sep 2020 14:40:40 -0700 Subject: [PATCH] Add Cargo.toml, forgot it in the last commit Signed-off-by: Alek Ratzloff --- Cargo.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..1c3dddf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "not-python" +version = "0.1.0" +authors = ["Alek Ratzloff "] +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"