composition/Cargo.toml

37 lines
900 B
TOML

[package]
name = "composition"
description = "An extremely fast Minecraft server"
build = "build.rs"
version = "0.1.0"
authors = ["Garen Tyler <garentyler@garen.dev>"]
repository = "https://github.com/garentyler/composition"
readme = "README.md"
license = "MIT"
edition = "2024"
[[bin]]
name = "composition"
path = "src/main.rs"
[features]
default = []
update_1_20 = []
[dependencies]
anyhow = "1.0.71"
apecs = "0.8.4"
async-trait = "0.1.68"
base64 = "0.22.1"
byteorder = "1.4.3"
clap = { version = "4.2.7", features = ["derive"] }
once_cell = "1.17.1"
serde = { version = "1.0.160", features = ["serde_derive"] }
serde_json = "1.0.96"
thiserror = "2.0.3"
tokio = { version = "1.28.0", features = ["full"] }
tokio-util = "0.7.8"
toml = "0.8.19"
tracing = { version = "0.1.37", features = ["log"] }
tracing-subscriber = { version = "0.3.17", features = ["tracing-log"] }
tracing-appender = "0.2.2"