azalea/azalea-client/Cargo.toml

51 lines
1.8 KiB
TOML
Raw Normal View History

2021-12-16 05:07:10 +00:00
[package]
description = "A headless Minecraft client."
2021-12-16 05:07:10 +00:00
edition = "2021"
license = "MIT"
2021-12-16 05:10:55 +00:00
name = "azalea-client"
2023-10-08 08:58:57 +00:00
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-client"
version = "0.9.0"
2021-12-16 05:07:10 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-11-07 00:04:48 +00:00
reqwest = { version = "0.11.22", default-features = false }
2023-09-08 21:51:30 +00:00
anyhow = "1.0.75"
2023-11-07 00:04:48 +00:00
async-trait = "0.1.74"
azalea-auth = { path = "../azalea-auth", version = "0.9.0" }
azalea-block = { path = "../azalea-block", version = "0.9.0" }
simdnbt = "0.3"
azalea-chat = { path = "../azalea-chat", version = "0.9.0" }
azalea-core = { path = "../azalea-core", version = "0.9.0" }
azalea-crypto = { path = "../azalea-crypto", version = "0.9.0" }
azalea-physics = { path = "../azalea-physics", version = "0.9.0" }
azalea-buf = { path = "../azalea-buf", version = "0.9.0" }
azalea-protocol = { path = "../azalea-protocol", version = "0.9.0" }
azalea-registry = { path = "../azalea-registry", version = "0.9.0" }
azalea-world = { path = "../azalea-world", version = "0.9.0" }
bevy_app = "0.12.1"
bevy_ecs = "0.12.1"
bevy_log = { version = "0.12.1", optional = true }
bevy_tasks = "0.12.1"
bevy_time = "0.12.1"
azalea-inventory = { path = "../azalea-inventory", version = "0.9.0" }
derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] }
2023-11-07 00:04:48 +00:00
futures = "0.3.29"
2023-11-18 06:58:47 +00:00
tracing = "0.1.40"
nohash-hasher = "0.2.0"
once_cell = "1.18.0"
parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] }
2023-11-07 00:04:48 +00:00
regex = "1.10.2"
thiserror = "^1.0.50"
2023-11-18 07:02:52 +00:00
tokio = { version = "^1.34.0", features = ["sync"] }
2023-12-05 17:06:24 +00:00
uuid = "^1.6.1"
azalea-entity = { version = "0.9.0", path = "../azalea-entity" }
2023-11-07 00:04:48 +00:00
serde_json = "1.0.108"
2023-12-05 17:06:24 +00:00
serde = "1.0.193"
2023-12-07 05:23:18 +00:00
minecraft_folder_path = "0.1.1"
[features]
default = ["log"]
# enables bevy_log::LogPlugin by default
2023-10-01 19:48:19 +00:00
log = ["bevy_log"]