From 225a9a1d7adaa8f7f55977f5c92a77a33e5fa45e Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Tue, 18 Nov 2025 13:23:24 -0600 Subject: [PATCH] Pin transitive dep ruzstd=0.8.1 The semver-compatible ruzstd 0.8.2 uses a feature that Rust 1.85 thinks is "nightly only." This might have been true when 1.85 was released, but it must have since been stabilized. I have to patch this for the Debian package to build correctly, and it needs to happen here because I need to vendor the dependency. --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index fa26212e..952ddd34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,8 @@ license = "AGPL-3.0-only" [dependencies] bevy = "0.16.0" +ruzstd = "=0.8.1" + # Grand-dependency pins # ab_glyph = "0.2.16" # fnv = "1.0.6"