[package] authors = ["Nick Babcock "] license = "MIT" name = "boxcars" readme = "README.md" edition = "2018" repository = "https://github.com/nickbabcock/boxcars" description = "Rocket league replay parser" keywords = ["rocket-league"] categories = ["parsing"] version = "0.9.16" include = ["src/**/*.rs", "Cargo.toml", "build.rs"] [dependencies] serde = { version = "1", features = ["derive"] } encoding_rs = "0.8" phf = { version = "0.11", features = ["macros"] } fnv = "1.0" bitter = "0.7" [dev-dependencies] serde_json = "1" criterion = "0.5" insta = { version = "1.39.0", features = ["glob", "serde", "json"] } highway = "1.2.0" [profile.bench] lto = true codegen-units = 1 [[bench]] path = "benches/bench_boxcars.rs" name = "bench_boxcars" harness = false [profile.dev.package] insta.opt-level = 3 similar.opt-level = 3