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

move smoker into it's own crate

This commit is contained in:
Robin Appelman 2020-01-20 20:48:09 +01:00
commit 7cc06bddee
6 changed files with 823 additions and 102 deletions

16
smoker/Cargo.toml Normal file
View file

@ -0,0 +1,16 @@
[package]
name = "tf-demo-parser-smoker"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
[[bin]]
name = "smoker"
path = "src/main.rs"
[dependencies]
tf-demo-parser = { version = "0.1", path = "../" }
rayon = "1.3.0"
jemallocator = "0.3"
better-panic = "0.1"
main_error = "0.1.0"