[workspace] members = [ "azalea", "azalea-auth", "azalea-block", "azalea-brigadier", "azalea-buf", "azalea-chat", "azalea-client", "azalea-core", "azalea-crypto", "azalea-entity", "azalea-inventory", "azalea-language", "azalea-physics", "azalea-protocol", "azalea-registry", "azalea-world", ] resolver = "3" # --- Workspace Settings --- [workspace.package] version = "0.14.0+mc1.21.11" edition = "2024" license = "MIT" repository = "https://github.com/azalea-rs/azalea" # homepage = "https://github.com/azalea-rs/azalea" [workspace.dependencies] aes = "0.8.4" anyhow = "1.0.100" async-compat = "0.2.5" base64 = "0.22.1" bevy_app = "0.17.2" bevy_ecs = { version = "0.17.2", default-features = false } bevy_utils = { version = "0.17.2", default-features = false } bevy_log = "0.17.2" bevy_tasks = "0.17.2" bevy_time = "0.17.2" byteorder = "1.5.0" cfb8 = "0.8.1" chrono = { version = "0.4.42", default-features = false } compact_str = "0.9.0" crc32c = "0.6.8" criterion = "0.7.0" # TODO: Remove when rsa is fixed. crypto-bigint = "=0.7.0-rc.10" # TODO: Remove when rsa is fixed. crypto-primes = "=0.7.0-pre.4" derive_more = "2.0.1" enum-as-inner = "0.6.1" env_logger = "0.11.8" flate2 = { version = "1.1.5", features = ["zlib-rs"] } futures = "0.3.31" futures-lite = "2.6.1" hickory-resolver = "0.25.2" indexmap = "2.12.0" md-5 = "0.10.6" minecraft_folder_path = "0.1.2" nohash-hasher = "0.2.0" num-bigint = "0.4.6" num-format = "0.4.4" num-traits = "0.2.19" parking_lot = "0.12.5" pastey = "0.1.1" proc-macro2 = "1.0.103" quote = "1.0.42" rand = "0.10.0-rc.5" regex = "1.12.2" reqwest = { version = "0.12.24", default-features = false } rsa = "0.10.0-rc.10" rsa_public_encrypt_pkcs1 = "0.4.0" rustc-hash = "2.1.1" serde = "1.0.228" serde_json = "1.0.145" sha1 = "0.11.0-rc.3" sha2 = "0.11.0-rc.3" # TODO: Remove when rsa is fixed. signature = "=3.0.0-rc.5" # TODO simdnbt = { version = "0.8.0", git = "https://github.com/azalea-rs/simdnbt" } socks5-impl = "0.7.2" syn = "2.0.110" thiserror = "2.0.17" tokio = "1.48.0" tokio-util = "0.7.17" tracing = "0.1.41" tracing-subscriber = "0.3.20" uuid = "1.18.1" azalea-block-macros = { path = "azalea-block/azalea-block-macros", version = "0.14.0" } azalea-block = { path = "azalea-block", version = "0.14.0" } azalea-auth = { path = "azalea-auth", version = "0.14.0", default-features = false } azalea-brigadier = { path = "azalea-brigadier", version = "0.14.0" } azalea-buf-macros = { path = "azalea-buf/azalea-buf-macros", version = "0.14.0" } azalea-buf = { path = "azalea-buf", version = "0.14.0" } azalea-chat = { path = "azalea-chat", version = "0.14.0" } azalea-client = { path = "azalea-client", version = "0.14.0", default-features = false } azalea-core = { path = "azalea-core", version = "0.14.0" } azalea-crypto = { path = "azalea-crypto", version = "0.14.0" } azalea-entity = { path = "azalea-entity", version = "0.14.0" } azalea-inventory-macros = { path = "azalea-inventory/azalea-inventory-macros", version = "0.14.0" } azalea-inventory = { path = "azalea-inventory", version = "0.14.0" } azalea-language = { path = "azalea-language", version = "0.14.0" } azalea-physics = { path = "azalea-physics", version = "0.14.0" } azalea-protocol-macros = { path = "azalea-protocol/azalea-protocol-macros", version = "0.14.0" } azalea-protocol = { path = "azalea-protocol", version = "0.14.0", default-features = false } azalea-registry-macros = { path = "azalea-registry/azalea-registry-macros", version = "0.14.0" } azalea-registry = { path = "azalea-registry", version = "0.14.0" } azalea-world = { path = "azalea-world", version = "0.14.0" } [workspace.lints.clippy] # https://users.rust-lang.org/t/to-string-vs-to-owned-for-string-literals/1441 str_to_string = "warn" [workspace.lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docsrs_dep)'] } [workspace.metadata.docs.rs] rustc-args = ["--cfg", "docsrs_dep"] rustdoc-args = [ "--cfg", "docsrs_dep", "--html-after-content", "docs-rs/trait-tags.html", ] cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"] # --- 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