-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
53 lines (47 loc) · 1.1 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
authors = ["melkor <[email protected]>"]
description = "Parser for Slippi replay files"
edition = "2021"
license = "MIT"
name = "peppi"
repository = "https://github.com/hohav/peppi"
version = "2.0.1"
exclude = ["benches", "tests"]
readme = "README.md"
[dependencies]
arrow2 = { version = "0.17", features = ["io_ipc", "io_ipc_compression", "io_json" ] }
byteorder = "1"
encoding_rs = "0.8"
log = "0.4"
num_enum = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
tar = "0.4"
thiserror = "1.0"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
[dev-dependencies]
arrow2 = { version = "0.17", features = ["io_json"] }
criterion = "0.5"
iai-callgrind = "0.11"
pretty_assertions = "1.3"
ssbm-data = "0.1"
[lib]
name = "peppi"
path = "src/lib.rs"
[[bench]]
name = "criterion"
harness = false
path = "benches/criterion.rs"
[[bench]]
name = "iai"
harness = false
path = "benches/iai.rs"
bench = false
[profile.bench]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
codegen-units = 1
incremental = false