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

add binary for dumping string tables

This commit is contained in:
Robin Appelman 2024-06-25 19:58:15 +02:00
commit e11cfb9556
2 changed files with 84 additions and 1 deletions

View file

@ -6,7 +6,7 @@ authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/demostf/parser"
exclude = [ "tests/fuzz", "test_data" ]
exclude = ["tests/fuzz", "test_data"]
default-run = "parse_demo"
rust-version = "1.70.0"
@ -36,6 +36,10 @@ name = "codegen"
path = "src/bin/codegen.rs"
required-features = ["codegen"]
[[bin]]
name = "strings"
path = "src/bin/strings.rs"
[dependencies]
bitbuffer = { version = "0.11.0", features = ["serde"] }
num_enum = "0.7.2"