Re-diff patch queue

This commit is contained in:
2025-11-18 13:31:47 -06:00
parent 603b49da10
commit 57907c105a
2 changed files with 6 additions and 6 deletions

View File

@@ -13,12 +13,12 @@ C, C++, or assembly through the conditional compilation systems.
1 file changed, 3 insertions(+)
diff --git a/Cargo.toml b/Cargo.toml
index fe0a0c2..60dd621 100644
index 952ddd3..4b2cf49 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,6 +6,9 @@ edition = "2024"
[dependencies]
bevy = "0.16.0"
@@ -9,6 +9,9 @@ bevy = "0.16.0"
ruzstd = "=0.8.1"
+# Use pure-Rust impl. to dodge problems with CPU feature set availability.
+blake3 = { version = "1.8.2", features = ["pure"] }

View File

@@ -7,10 +7,10 @@ Subject: Use "mini" as "release" profile
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index 60dd621..c7bcf17 100644
index 4b2cf49..192533d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -36,8 +36,11 @@ opt-level = 1
@@ -39,8 +39,11 @@ opt-level = 1
opt-level = 3
[profile.release]