azalea/azalea-nbt/Cargo.toml
mat ac4d675d44
NBT decoder optimizations (#17)
* replace HashMap with AHashMap

* faster read_string by just doing read_exact

* re-enable all the benchmarks
2022-08-19 14:14:08 -05:00

27 lines
507 B
TOML
Executable file

[package]
edition = "2021"
name = "azalea-nbt"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.7.6"
azalea-buf = {path = "../azalea-buf"}
byteorder = "1.4.3"
flate2 = "1.0.23"
num-derive = "^0.3.3"
num-traits = "^0.2.14"
[dev-dependencies]
criterion = {version = "^0.3.5", features = ["html_reports"]}
[profile.release]
lto = true
[profile.bench]
debug = true
[[bench]]
harness = false
name = "my_benchmark"