1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
azalea/azalea-nbt/Cargo.toml
mat 567c6f4f2c Reduce usage of AsyncRead
We already receive everything from the server when it tells us the length, so we can actually just treat the stream as a Read instead of an AsyncRead.
2022-05-01 21:54:03 -05:00

25 lines
453 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]
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"