From a90ad09f52e9e2aaa447f9ebf72af53bbf43991d Mon Sep 17 00:00:00 2001 From: UniEon Date: Tue, 6 Jan 2026 21:57:44 +0800 Subject: [PATCH] Update rkyv version in Cargo.toml to fix RUSTSEC-2026-0001 Changed the version of rkyv for undefined behaviour. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7e8c3a7..efb198e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ postgres-types = { default-features = false, optional = true, version = "0.2" } proptest = { default-features = false, optional = true, features = ["std"], version = "1.0" } rand-0_9 = { default-features = false, optional = true, package = "rand", version = "0.9" } rust_decimal_macros = { path = "macros", default-features = false, optional = true, version = "1" } -rkyv = { default-features = false, features = ["size_32", "std"], optional = true, version = "0.7.42" } +rkyv = { default-features = false, features = ["size_32", "std"], optional = true, version = "0.8.13" } rocket = { default-features = false, optional = true, version = "0.5.0-rc.3" } serde = { default-features = false, optional = true, version = "1.0" } serde_json = { default-features = false, optional = true, version = "1.0" }