1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00
azalea/Cargo.toml
EightFactorial dd23839772
Update Bevy to 0.15.0-rc.3
Surprisingly little needed to be changed
2024-11-13 20:51:32 -08:00

79 lines
1.7 KiB
TOML

[workspace]
members = [
"azalea",
"azalea-client",
"azalea-protocol",
"azalea-chat",
"azalea-core",
"azalea-auth",
"azalea-brigadier",
"azalea-crypto",
"azalea-world",
"azalea-language",
"azalea-block",
"azalea-buf",
"azalea-physics",
"azalea-registry",
"azalea-inventory",
"azalea-entity",
]
resolver = "2"
# --- Workspace Settings ---
[workspace.package]
version = "0.10.3+mc1.21.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/azalea-rs/azalea"
# homepage = "https://github.com/azalea-rs/azalea"
[workspace.dependencies]
anyhow = "1.0.93"
bevy_app = "0.15.0-rc.3"
bevy_ecs = { version = "0.15.0-rc.3", default-features = false }
bevy_log = "0.15.0-rc.3"
bevy_tasks = "0.15.0-rc.3"
bevy_time = "0.15.0-rc.3"
byteorder = "1.5.0"
criterion = { version = "0.5.1", features = ["html_reports"] }
derive_more = { version = "1.0.0", features = ["full"] }
futures = "0.3.31"
futures-lite = "2.5.0"
futures-util = "0.3.31"
nohash-hasher = "0.2.0"
num-bigint = "0.4.6"
num-traits = "0.2.19"
parking_lot = "0.12.3"
proc-macro2 = "1.0.89"
quote = "1.0.37"
rand = "0.8.5"
reqwest = { version = "0.12.9", default-features = false }
rsa = "0.9.6"
rustc-hash = "2.0.0"
serde = "1.0.215"
serde_json = "1.0.132"
simdnbt = "0.6.1"
smallvec = "1.13.2"
syn = { version = "2.0.87", features = ["full"] }
thiserror = "2.0.3"
tokio = "1.41.1"
tokio-util = "0.7.12"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = "1.11.0"
# --- Profile Settings ---
[profile.release]
debug = true
# decoding packets takes forever if we don't do this
[profile.dev.package.azalea-crypto]
opt-level = 3
[profile.dev.package.cfb8]
opt-level = 3
[profile.dev.package.aes]
opt-level = 3
[profile.dev.package.flate2]
opt-level = 3