azalea/azalea-nbt/Cargo.toml

30 lines
689 B
TOML
Raw Normal View History

2021-12-18 23:02:23 +00:00
[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]
2021-12-20 21:22:02 +00:00
async-compression = {version = "^0.3.8", features = ["tokio", "zlib", "gzip"]}
async-recursion = "^0.3.2"
2021-12-18 23:02:23 +00:00
byteorder = "^1.4.3"
2021-12-19 02:33:16 +00:00
flate2 = "^1.0.22"
2021-12-18 23:02:23 +00:00
num-derive = "^0.3.3"
num-traits = "^0.2.14"
2021-12-20 21:22:02 +00:00
tokio = "^1.15.0"
2021-12-19 19:07:54 +00:00
[dev-dependencies]
2021-12-20 21:22:02 +00:00
criterion = {version = "^0.3.5", features = ["html_reports", "async_tokio"]}
2022-04-21 18:08:33 +00:00
tokio = {version = "^1.15.0", features = ["fs", "io-util", "macros", "rt", "rt-multi-thread"]}
2021-12-19 19:07:54 +00:00
[profile.release]
lto = true
2022-04-21 18:08:33 +00:00
[profile.bench]
debug = true
2021-12-19 19:07:54 +00:00
[[bench]]
harness = false
name = "my_benchmark"