mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 23:44:38 +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 Settings ---
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.13.0+mc1.21.5"
|
version = "0.12.0+mc1.21.5"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/azalea-rs/azalea"
|
repository = "https://github.com/azalea-rs/azalea"
|
||||||
|
@ -83,26 +83,26 @@ compact_str = "0.9.0"
|
||||||
crc32fast = "1.4.2"
|
crc32fast = "1.4.2"
|
||||||
async-compat = "0.2.4"
|
async-compat = "0.2.4"
|
||||||
|
|
||||||
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.13.0" }
|
azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.12.0" }
|
||||||
azalea-block = { path = "azalea-block", version = "0.13.0" }
|
azalea-block = { path = "azalea-block", version = "0.12.0" }
|
||||||
azalea-auth = { path = "azalea-auth", version = "0.13.0" }
|
azalea-auth = { path = "azalea-auth", version = "0.12.0" }
|
||||||
azalea-brigadier = { path = "azalea-brigadier", version = "0.13.0" }
|
azalea-brigadier = { path = "azalea-brigadier", version = "0.12.0" }
|
||||||
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.13.0" }
|
azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.12.0" }
|
||||||
azalea-buf = { path = "azalea-buf", version = "0.13.0" }
|
azalea-buf = { path = "azalea-buf", version = "0.12.0" }
|
||||||
azalea-chat = { path = "azalea-chat", version = "0.13.0" }
|
azalea-chat = { path = "azalea-chat", version = "0.12.0" }
|
||||||
azalea-client = { path = "azalea-client", version = "0.13.0" }
|
azalea-client = { path = "azalea-client", version = "0.12.0", default-features = false }
|
||||||
azalea-core = { path = "azalea-core", version = "0.13.0" }
|
azalea-core = { path = "azalea-core", version = "0.12.0" }
|
||||||
azalea-crypto = { path = "azalea-crypto", version = "0.13.0" }
|
azalea-crypto = { path = "azalea-crypto", version = "0.12.0" }
|
||||||
azalea-entity = { path = "azalea-entity", version = "0.13.0" }
|
azalea-entity = { path = "azalea-entity", version = "0.12.0" }
|
||||||
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.13.0" }
|
azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.12.0" }
|
||||||
azalea-inventory = { path = "azalea-inventory", version = "0.13.0" }
|
azalea-inventory = { path = "azalea-inventory", version = "0.12.0" }
|
||||||
azalea-language = { path = "azalea-language", version = "0.13.0" }
|
azalea-language = { path = "azalea-language", version = "0.12.0" }
|
||||||
azalea-physics = { path = "azalea-physics", version = "0.13.0" }
|
azalea-physics = { path = "azalea-physics", version = "0.12.0" }
|
||||||
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.13.0" }
|
azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.12.0" }
|
||||||
azalea-protocol = { path = "azalea-protocol", version = "0.13.0" }
|
azalea-protocol = { path = "azalea-protocol", version = "0.12.0" }
|
||||||
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.13.0" }
|
azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.12.0" }
|
||||||
azalea-registry = { path = "azalea-registry", version = "0.13.0" }
|
azalea-registry = { path = "azalea-registry", version = "0.12.0" }
|
||||||
azalea-world = { path = "azalea-world", version = "0.13.0" }
|
azalea-world = { path = "azalea-world", version = "0.12.0" }
|
||||||
|
|
||||||
# --- Profile Settings ---
|
# --- Profile Settings ---
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@ license.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block-macros = { path = "./azalea-block-macros", version = "0.12.0" }
|
azalea-block-macros.workspace = true
|
||||||
azalea-buf.workspace = true
|
azalea-buf.workspace = true
|
||||||
azalea-registry.workspace = true
|
azalea-registry.workspace = true
|
||||||
|
|
|
@ -11,8 +11,8 @@ bevy_app.workspace = true
|
||||||
bevy_ecs.workspace = true
|
bevy_ecs.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf = { path = "../azalea-buf", version = "0.12.0", optional = true }
|
azalea-buf = { workspace = true, optional = true }
|
||||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", optional = true }
|
azalea-chat = { workspace = true, optional = true }
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -7,7 +7,7 @@ license.workspace = true
|
||||||
repository.workspace = true
|
repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf-macros = { path = "./azalea-buf-macros", version = "0.12.0" }
|
azalea-buf-macros.workspace = true
|
||||||
byteorder.workspace = true
|
byteorder.workspace = true
|
||||||
serde_json = { workspace = true, optional = true }
|
serde_json = { workspace = true, optional = true }
|
||||||
simdnbt.workspace = true
|
simdnbt.workspace = true
|
||||||
|
|
|
@ -13,11 +13,9 @@ azalea-buf = ["dep:azalea-buf", "simdnbt"]
|
||||||
numbers = ["dep:azalea-registry", "dep:simdnbt"]
|
numbers = ["dep:azalea-registry", "dep:simdnbt"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf = { path = "../azalea-buf", version = "0.12.0", optional = true, features = [
|
azalea-buf = { workspace = true, optional = true, features = ["serde_json"] }
|
||||||
"serde_json",
|
|
||||||
] }
|
|
||||||
azalea-language.workspace = true
|
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 = { workspace = true, features = ["derive"] }
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
simdnbt = { workspace = true, optional = true }
|
simdnbt = { workspace = true, optional = true }
|
||||||
|
|
|
@ -9,9 +9,7 @@ repository.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block.workspace = true
|
azalea-block.workspace = true
|
||||||
azalea-buf.workspace = true
|
azalea-buf.workspace = true
|
||||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
azalea-chat = { workspace = true, features = ["azalea-buf"] }
|
||||||
"azalea-buf",
|
|
||||||
] }
|
|
||||||
azalea-core.workspace = true
|
azalea-core.workspace = true
|
||||||
azalea-inventory.workspace = true
|
azalea-inventory.workspace = true
|
||||||
azalea-registry.workspace = true
|
azalea-registry.workspace = true
|
||||||
|
|
|
@ -8,11 +8,9 @@ repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf.workspace = true
|
azalea-buf.workspace = true
|
||||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
azalea-chat = { workspace = true, features = ["azalea-buf"] }
|
||||||
"azalea-buf",
|
|
||||||
] }
|
|
||||||
azalea-core.workspace = true
|
azalea-core.workspace = true
|
||||||
azalea-inventory-macros = { path = "./azalea-inventory-macros", version = "0.12.0" }
|
azalea-inventory-macros.workspace = true
|
||||||
azalea-registry.workspace = true
|
azalea-registry.workspace = true
|
||||||
indexmap.workspace = true
|
indexmap.workspace = true
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,8 @@ uuid.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block.workspace = true
|
azalea-block.workspace = true
|
||||||
azalea-core.workspace = true
|
azalea-core.workspace = true
|
||||||
azalea-entity = { version = "0.12.0", path = "../azalea-entity" }
|
azalea-entity.workspace = true
|
||||||
azalea-inventory = { version = "0.12.0", path = "../azalea-inventory" }
|
azalea-inventory.workspace = true
|
||||||
azalea-registry.workspace = true
|
azalea-registry.workspace = true
|
||||||
azalea-world.workspace = true
|
azalea-world.workspace = true
|
||||||
bevy_app.workspace = true
|
bevy_app.workspace = true
|
||||||
|
|
|
@ -14,22 +14,15 @@ tracing-subscriber.workspace = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-recursion.workspace = true
|
async-recursion.workspace = true
|
||||||
azalea-auth.workspace = true
|
azalea-auth.workspace = true
|
||||||
azalea-block = { path = "../azalea-block", version = "0.12.0", default-features = false }
|
azalea-block.workspace = true
|
||||||
azalea-brigadier = { path = "../azalea-brigadier", version = "0.12.0", features = [
|
azalea-brigadier = { workspace = true, features = ["azalea-buf"] }
|
||||||
"azalea-buf",
|
|
||||||
] }
|
|
||||||
azalea-buf.workspace = true
|
azalea-buf.workspace = true
|
||||||
azalea-chat = { path = "../azalea-chat", version = "0.12.0", features = [
|
azalea-chat = { workspace = true, features = ["numbers", "azalea-buf"] }
|
||||||
"numbers",
|
azalea-core = { workspace = true, optional = true, features = ["serde"] }
|
||||||
"azalea-buf",
|
|
||||||
] }
|
|
||||||
azalea-core = { path = "../azalea-core", version = "0.12.0", optional = true, features = [
|
|
||||||
"serde",
|
|
||||||
] }
|
|
||||||
azalea-crypto.workspace = true
|
azalea-crypto.workspace = true
|
||||||
azalea-entity.workspace = true
|
azalea-entity.workspace = true
|
||||||
azalea-inventory.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-registry.workspace = true
|
||||||
azalea-world.workspace = true
|
azalea-world.workspace = true
|
||||||
bevy_ecs.workspace = true
|
bevy_ecs.workspace = true
|
||||||
|
|
|
@ -8,7 +8,7 @@ repository.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-buf.workspace = true
|
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"] }
|
serde = { workspace = true, optional = true, features = ["derive"] }
|
||||||
simdnbt.workspace = true
|
simdnbt.workspace = true
|
||||||
|
|
||||||
|
|
|
@ -8,14 +8,12 @@ repository.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
azalea-client.workspace = true
|
azalea-client.workspace = true
|
||||||
criterion = "0.6.0"
|
criterion.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
azalea-block.workspace = true
|
azalea-block.workspace = true
|
||||||
azalea-buf.workspace = true
|
azalea-buf.workspace = true
|
||||||
azalea-core = { path = "../azalea-core", version = "0.12.0", features = [
|
azalea-core = { workspace = true, features = ["bevy_ecs"] }
|
||||||
"bevy_ecs",
|
|
||||||
] }
|
|
||||||
azalea-registry.workspace = true
|
azalea-registry.workspace = true
|
||||||
bevy_ecs.workspace = true
|
bevy_ecs.workspace = true
|
||||||
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
|
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
|
||||||
|
|
|
@ -13,19 +13,19 @@ pre-release-replacements = [
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
#async-trait.workspace = true
|
#async-trait.workspace = true
|
||||||
azalea-auth = { version = "0.12.0", path = "../azalea-auth" }
|
azalea-auth.workspace = true
|
||||||
azalea-block = { version = "0.12.0", path = "../azalea-block" }
|
azalea-block.workspace = true
|
||||||
azalea-brigadier = { version = "0.12.0", path = "../azalea-brigadier" }
|
azalea-brigadier.workspace = true
|
||||||
azalea-buf = { version = "0.12.0", path = "../azalea-buf" }
|
azalea-buf.workspace = true
|
||||||
azalea-chat = { version = "0.12.0", path = "../azalea-chat" }
|
azalea-chat.workspace = true
|
||||||
azalea-client = { version = "0.12.0", path = "../azalea-client", default-features = false }
|
azalea-client.workspace = true
|
||||||
azalea-core = { version = "0.12.0", path = "../azalea-core" }
|
azalea-core.workspace = true
|
||||||
azalea-entity = { version = "0.12.0", path = "../azalea-entity" }
|
azalea-entity.workspace = true
|
||||||
azalea-inventory = { version = "0.12.0", path = "../azalea-inventory" }
|
azalea-inventory.workspace = true
|
||||||
azalea-physics = { version = "0.12.0", path = "../azalea-physics" }
|
azalea-physics.workspace = true
|
||||||
azalea-protocol = { version = "0.12.0", path = "../azalea-protocol" }
|
azalea-protocol.workspace = true
|
||||||
azalea-registry = { version = "0.12.0", path = "../azalea-registry" }
|
azalea-registry.workspace = true
|
||||||
azalea-world = { version = "0.12.0", path = "../azalea-world" }
|
azalea-world.workspace = true
|
||||||
bevy_app.workspace = true
|
bevy_app.workspace = true
|
||||||
bevy_ecs.workspace = true
|
bevy_ecs.workspace = true
|
||||||
bevy_log.workspace = true
|
bevy_log.workspace = true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue