1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00
azalea/azalea-client/Cargo.toml
mat 7098375ecf Release 0.11.0+mc1.21.4
azalea@0.11.0+mc1.21.4
azalea-auth@0.11.0+mc1.21.4
azalea-block@0.11.0+mc1.21.4
azalea-block-macros@0.11.0+mc1.21.4
azalea-brigadier@0.11.0+mc1.21.4
azalea-buf@0.11.0+mc1.21.4
azalea-buf-macros@0.11.0+mc1.21.4
azalea-chat@0.11.0+mc1.21.4
azalea-client@0.11.0+mc1.21.4
azalea-core@0.11.0+mc1.21.4
azalea-crypto@0.11.0+mc1.21.4
azalea-entity@0.11.0+mc1.21.4
azalea-inventory@0.11.0+mc1.21.4
azalea-inventory-macros@0.11.0+mc1.21.4
azalea-language@0.11.0+mc1.21.4
azalea-physics@0.11.0+mc1.21.4
azalea-protocol@0.11.0+mc1.21.4
azalea-protocol-macros@0.11.0+mc1.21.4
azalea-registry@0.11.0+mc1.21.4
azalea-registry-macros@0.11.0+mc1.21.4
azalea-world@0.11.0+mc1.21.4

Generated by cargo-workspaces
2024-12-20 19:18:36 -06:00

42 lines
1.8 KiB
TOML

[package]
name = "azalea-client"
description = "A headless Minecraft client."
version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
[dependencies]
anyhow = { workspace = true }
azalea-auth = { path = "../azalea-auth", version = "0.11.0+mc1.21.4" }
azalea-block = { path = "../azalea-block", version = "0.11.0+mc1.21.4" }
azalea-buf = { path = "../azalea-buf", version = "0.11.0+mc1.21.4" }
azalea-chat = { path = "../azalea-chat", version = "0.11.0+mc1.21.4" }
azalea-core = { path = "../azalea-core", version = "0.11.0+mc1.21.4" }
azalea-crypto = { path = "../azalea-crypto", version = "0.11.0+mc1.21.4" }
azalea-entity = { path = "../azalea-entity", version = "0.11.0+mc1.21.4" }
azalea-inventory = { path = "../azalea-inventory", version = "0.11.0+mc1.21.4" }
azalea-physics = { path = "../azalea-physics", version = "0.11.0+mc1.21.4" }
azalea-protocol = { path = "../azalea-protocol", version = "0.11.0+mc1.21.4" }
azalea-registry = { path = "../azalea-registry", version = "0.11.0+mc1.21.4" }
azalea-world = { path = "../azalea-world", version = "0.11.0+mc1.21.4" }
bevy_app = { workspace = true }
bevy_ecs = { workspace = true }
bevy_log = { workspace = true, optional = true }
bevy_tasks = { workspace = true }
bevy_time = { workspace = true }
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
minecraft_folder_path = { workspace = true }
parking_lot = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true }
simdnbt = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["sync"] }
tracing = { workspace = true }
uuid = { workspace = true }
[features]
default = ["log"]
# enables bevy_log::LogPlugin by default
log = ["bevy_log"]