-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
38 lines (33 loc) · 855 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
authors = ["Nick Babcock <[email protected]>"]
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