composition/Cargo.toml
2024-12-04 18:39:31 -07:00

36 lines
880 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 = "2021"
[[bin]]
name = "composition"
path = "src/main.rs"
[features]
default = []
update_1_20 = []
[dependencies]
anyhow = "1.0.94"
async-trait = "0.1.68"
base64 = "0.22.1"
clap = { version = "4.5.22", features = ["derive"] }
once_cell = "1.17.1"
serde = { version = "1.0.160", features = ["serde_derive"] }
serde_json = "1.0.96"
thiserror = "2.0.4"
tokio = { version = "1.42.0", features = ["full"] }
tokio-util = "0.7.13"
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"
nom = "7.1.3"