From 6c110f2731c3893af397cc6a660f374ff705c99b Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 30 Nov 2025 21:04:12 -0600 Subject: Add `online-mode` Cargo feature (#281) * Add `online-mode` cargo feature * fix bad formatting in Cargo.toml --- Cargo.toml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index ec8c3136..09a12269 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,8 +44,10 @@ chrono = { version = "0.4.42", default-features = false } compact_str = "0.9.0" crc32c = "0.6.8" criterion = "0.7.0" -crypto-bigint = "=0.7.0-rc.10" # TODO: Remove when rsa is fixed. -crypto-primes = "=0.7.0-pre.4" # TODO: Remove when rsa is fixed. +# 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" @@ -74,7 +76,8 @@ serde = "1.0.228" serde_json = "1.0.145" sha1 = "0.11.0-rc.3" sha2 = "0.11.0-rc.3" -signature = "=3.0.0-rc.5" # TODO: Remove when rsa is fixed. +# TODO: Remove when rsa is fixed. +signature = "=3.0.0-rc.5" simdnbt = { version = "0.8.0", git = "https://github.com/azalea-rs/simdnbt" } socks5-impl = "0.7.2" syn = "2.0.110" @@ -87,7 +90,7 @@ 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" } +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" } @@ -101,7 +104,7 @@ 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" } +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" } -- cgit v1.2.3