minecraft-rs/minecraft-protocol/Cargo.toml

21 lines
515 B
TOML

[package]
name = "minecraft-protocol"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
tokio-support = ["tokio", "async-trait"]
[dependencies]
thiserror = "1.0"
byteorder = "1"
minecraft-protocol-derive = { path = "../minecraft-protocol-derive" }
tokio = { version = "1.16", optional = true }
async-trait = { version = "0.1", optional = true }
[dev-dependencies]
log = "0.4"
env_logger = "0.9.0"
serde_json = "1.0.73"