mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
use workspace deps everywhere
This commit is contained in:
parent
6bbb3ec5eb
commit
57bdb88272
12 changed files with 53 additions and 68 deletions
42
Cargo.toml
42
Cargo.toml
|
@ -22,7 +22,7 @@ resolver = "2"
|
|||
# --- Workspace Settings ---
|
||||
|
||||
[workspace.package]
|
||||
version = "0.13.0+mc1.21.5"
|
||||
version = "0.12.0+mc1.21.5"
|
||||
edition = "2024"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/azalea-rs/azalea"
|
||||
|
@ -83,26 +83,26 @@ compact_str = "0.9.0"
|
|||
crc32fast = "1.4.2"
|
||||
async-compat = "0.2.4"
|
||||
|
||||
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.13.0" }
|
||||
azalea-block = { path = "azalea-block", version = "0.13.0" }
|
||||
azalea-auth = { path = "azalea-auth", version = "0.13.0" }
|
||||
azalea-brigadier = { path = "azalea-brigadier", version = "0.13.0" }
|
||||
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.13.0" }
|
||||
azalea-buf = { path = "azalea-buf", version = "0.13.0" }
|
||||
azalea-chat = { path = "azalea-chat", version = "0.13.0" }
|
||||
azalea-client = { path = "azalea-client", version = "0.13.0" }
|
||||
azalea-core = { path = "azalea-core", version = "0.13.0" }
|
||||
azalea-crypto = { path = "azalea-crypto", version = "0.13.0" }
|
||||
azalea-entity = { path = "azalea-entity", version = "0.13.0" }
|
||||
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.13.0" }
|
||||
azalea-inventory = { path = "azalea-inventory", version = "0.13.0" }
|
||||
azalea-language = { path = "azalea-language", version = "0.13.0" }
|
||||
azalea-physics = { path = "azalea-physics", version = "0.13.0" }
|
||||
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.13.0" }
|
||||
azalea-protocol = { path = "azalea-protocol", version = "0.13.0" }
|
||||
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.13.0" }
|
||||
azalea-registry = { path = "azalea-registry", version = "0.13.0" }
|
||||
azalea-world = { path = "azalea-world", version = "0.13.0" }
|
||||
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.12.0" }
|
||||
azalea-block = { path = "azalea-block", version = "0.12.0" }
|
||||
azalea-auth = { path = "azalea-auth", version = "0.12.0" }
|
||||
azalea-brigadier = { path = "azalea-brigadier", version = "0.12.0" }
|
||||
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.12.0" }
|
||||
azalea-buf = { path = "azalea-buf", version = "0.12.0" }
|
||||
azalea-chat = { path = "azalea-chat", version = "0.12.0" }
|
||||
azalea-client = { path = "azalea-client", version = "0.12.0", default-features = false }
|
||||
azalea-core = { path = "azalea-core", version = "0.12.0" }
|
||||
azalea-crypto = { path = "azalea-crypto", version = "0.12.0" }
|
||||
azalea-entity = { path = "azalea-entity", version = "0.12.0" }
|
||||
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.12.0" }
|
||||
azalea-inventory = { path = "azalea-inventory", version = "0.12.0" }
|
||||
azalea-language = { path = "azalea-language", version = "0.12.0" }
|
||||
azalea-physics = { path = "azalea-physics", version = "0.12.0" }
|
||||
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.12.0" }
|
||||
azalea-protocol = { path = "azalea-protocol", version = "0.12.0" }
|
||||
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.12.0" }
|
||||
azalea-registry = { path = "azalea-registry", version = "0.12.0" }
|
||||
azalea-world = { path = "azalea-world", version = "0.12.0" }
|
||||
|
||||
# --- Profile Settings ---
|
||||
|
||||
|
|
|
@ -7,6 +7,6 @@ license.workspace = true
|
|||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
azalea-block-macros = { path = "./azalea-block-macros", version = "0.12.0" }
|
||||
azalea-block-macros.workspace = true
|
||||
azalea-buf.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
|
|
|
@ -11,8 +11,8 @@ bevy_app.workspace = true
|
|||
bevy_ecs.workspace = true
|
||||
|
||||
[dependencies]
|
||||
azalea-buf = { path = "../azalea-buf", version = "0.12.0", optional = true }
|
||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", optional = true }
|
||||
azalea-buf = { workspace = true, optional = true }
|
||||
azalea-chat = { workspace = true, optional = true }
|
||||
parking_lot.workspace = true
|
||||
|
||||
[features]
|
||||
|
|
|
@ -7,7 +7,7 @@ license.workspace = true
|
|||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.12.0" }
|
||||
azalea-buf-macros.workspace = true
|
||||
byteorder.workspace = true
|
||||
serde_json = { workspace = true, optional = true }
|
||||
simdnbt.workspace = true
|
||||
|
|
|
@ -13,11 +13,9 @@ azalea-buf = ["dep:azalea-buf", "simdnbt"]
|
|||
numbers = ["dep:azalea-registry", "dep:simdnbt"]
|
||||
|
||||
[dependencies]
|
||||
azalea-buf = { path = "../azalea-buf", version = "0.12.0", optional = true, features = [
|
||||
"serde_json",
|
||||
] }
|
||||
azalea-buf = { workspace = true, optional = true, features = ["serde_json"] }
|
||||
azalea-language.workspace = true
|
||||
azalea-registry = { path = "../azalea-registry", version = "0.12.0", optional = true }
|
||||
azalea-registry = { workspace = true, optional = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json.workspace = true
|
||||
simdnbt = { workspace = true, optional = true }
|
||||
|
|
|
@ -9,9 +9,7 @@ repository.workspace = true
|
|||
[dependencies]
|
||||
azalea-block.workspace = true
|
||||
azalea-buf.workspace = true
|
||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
||||
"azalea-buf",
|
||||
] }
|
||||
azalea-chat = { workspace = true, features = ["azalea-buf"] }
|
||||
azalea-core.workspace = true
|
||||
azalea-inventory.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
|
|
|
@ -8,11 +8,9 @@ repository.workspace = true
|
|||
|
||||
[dependencies]
|
||||
azalea-buf.workspace = true
|
||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
||||
"azalea-buf",
|
||||
] }
|
||||
azalea-chat = { workspace = true, features = ["azalea-buf"] }
|
||||
azalea-core.workspace = true
|
||||
azalea-inventory-macros = { path = "./azalea-inventory-macros", version = "0.12.0" }
|
||||
azalea-inventory-macros.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
indexmap.workspace = true
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@ uuid.workspace = true
|
|||
[dependencies]
|
||||
azalea-block.workspace = true
|
||||
azalea-core.workspace = true
|
||||
azalea-entity = { version = "0.12.0", path = "../azalea-entity" }
|
||||
azalea-inventory = { version = "0.12.0", path = "../azalea-inventory" }
|
||||
azalea-entity.workspace = true
|
||||
azalea-inventory.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
azalea-world.workspace = true
|
||||
bevy_app.workspace = true
|
||||
|
|
|
@ -14,22 +14,15 @@ tracing-subscriber.workspace = true
|
|||
[dependencies]
|
||||
async-recursion.workspace = true
|
||||
azalea-auth.workspace = true
|
||||
azalea-block = { path = "../azalea-block", version = "0.12.0", default-features = false }
|
||||
azalea-brigadier = { path = "../azalea-brigadier", version = "0.12.0", features = [
|
||||
"azalea-buf",
|
||||
] }
|
||||
azalea-block.workspace = true
|
||||
azalea-brigadier = { workspace = true, features = ["azalea-buf"] }
|
||||
azalea-buf.workspace = true
|
||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
||||
"numbers",
|
||||
"azalea-buf",
|
||||
] }
|
||||
azalea-core = { path = "../azalea-core", version = "0.12.0", optional = true, features = [
|
||||
"serde",
|
||||
] }
|
||||
azalea-chat = { workspace = true, features = ["numbers", "azalea-buf"] }
|
||||
azalea-core = { workspace = true, optional = true, features = ["serde"] }
|
||||
azalea-crypto.workspace = true
|
||||
azalea-entity.workspace = true
|
||||
azalea-inventory.workspace = true
|
||||
azalea-protocol-macros = { path = "./azalea-protocol-macros", version = "0.12.0" }
|
||||
azalea-protocol-macros.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
azalea-world.workspace = true
|
||||
bevy_ecs.workspace = true
|
||||
|
|
|
@ -8,7 +8,7 @@ repository.workspace = true
|
|||
|
||||
[dependencies]
|
||||
azalea-buf.workspace = true
|
||||
azalea-registry-macros = { path = "./azalea-registry-macros", version = "0.12.0" }
|
||||
azalea-registry-macros.workspace = true
|
||||
serde = { workspace = true, optional = true, features = ["derive"] }
|
||||
simdnbt.workspace = true
|
||||
|
||||
|
|
|
@ -8,14 +8,12 @@ repository.workspace = true
|
|||
|
||||
[dev-dependencies]
|
||||
azalea-client.workspace = true
|
||||
criterion = "0.6.0"
|
||||
criterion.workspace = true
|
||||
|
||||
[dependencies]
|
||||
azalea-block.workspace = true
|
||||
azalea-buf.workspace = true
|
||||
azalea-core = { path = "../azalea-core", version = "0.12.0", features = [
|
||||
"bevy_ecs",
|
||||
] }
|
||||
azalea-core = { workspace = true, features = ["bevy_ecs"] }
|
||||
azalea-registry.workspace = true
|
||||
bevy_ecs.workspace = true
|
||||
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
|
||||
|
|
|
@ -13,19 +13,19 @@ pre-release-replacements = [
|
|||
|
||||
[dependencies]
|
||||
#async-trait.workspace = true
|
||||
azalea-auth = { version = "0.12.0", path = "../azalea-auth" }
|
||||
azalea-block = { version = "0.12.0", path = "../azalea-block" }
|
||||
azalea-brigadier = { version = "0.12.0", path = "../azalea-brigadier" }
|
||||
azalea-buf = { version = "0.12.0", path = "../azalea-buf" }
|
||||
azalea-chat = { version = "0.12.0", path = "../azalea-chat" }
|
||||
azalea-client = { version = "0.12.0", path = "../azalea-client", default-features = false }
|
||||
azalea-core = { version = "0.12.0", path = "../azalea-core" }
|
||||
azalea-entity = { version = "0.12.0", path = "../azalea-entity" }
|
||||
azalea-inventory = { version = "0.12.0", path = "../azalea-inventory" }
|
||||
azalea-physics = { version = "0.12.0", path = "../azalea-physics" }
|
||||
azalea-protocol = { version = "0.12.0", path = "../azalea-protocol" }
|
||||
azalea-registry = { version = "0.12.0", path = "../azalea-registry" }
|
||||
azalea-world = { version = "0.12.0", path = "../azalea-world" }
|
||||
azalea-auth.workspace = true
|
||||
azalea-block.workspace = true
|
||||
azalea-brigadier.workspace = true
|
||||
azalea-buf.workspace = true
|
||||
azalea-chat.workspace = true
|
||||
azalea-client.workspace = true
|
||||
azalea-core.workspace = true
|
||||
azalea-entity.workspace = true
|
||||
azalea-inventory.workspace = true
|
||||
azalea-physics.workspace = true
|
||||
azalea-protocol.workspace = true
|
||||
azalea-registry.workspace = true
|
||||
azalea-world.workspace = true
|
||||
bevy_app.workspace = true
|
||||
bevy_ecs.workspace = true
|
||||
bevy_log.workspace = true
|
||||
|
|
Loading…
Add table
Reference in a new issue