1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

do codegen with new rust parser

This commit is contained in:
Robin Appelman 2019-08-25 15:02:32 +02:00
commit 8ebee0b0d7
5 changed files with 1327 additions and 0 deletions

19
codegen/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "tf-demo-parser-gen"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
[[bin]]
name = "generate"
path = "src/main.rs"
[dependencies]
tf-demo-parser = { version = "0.1", path = "../" }
quote = "1.0"
Inflector = { version = "0.11", default-features = false }
better-panic = "0.1"
proc-macro2 = "1.0"
tempfile = "3.0"
toolchain_find = "0.1"
lazy_static = "1.3"