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

handle mallformed utf8 gameevent values

This commit is contained in:
Robin Appelman 2020-01-20 12:30:05 +01:00
commit 6599a5d6d2
8 changed files with 201 additions and 9 deletions

View file

@ -12,6 +12,10 @@ path = "src/lib.rs"
name = "parse_demo"
path = "src/bin/main.rs"
[[bin]]
name = "all_test"
path = "src/bin/all_test.rs"
[dependencies]
bitstream_reader = { version = "0.7", path = "../../bitbuffer" }
num_enum = "0.4"
@ -27,6 +31,7 @@ main_error = "0.1.0"
jemallocator = { version = "0.3", optional = true }
better-panic = { version = "0.1", optional = true }
no-panic = { version = "0.1", optional = true }
rayon = "1.3.0"
[dev-dependencies]
pretty_assertions = "0.6"