From 1031508b6cc60f81d50304159479f1237375e8d9 Mon Sep 17 00:00:00 2001 From: NAC Development Team Date: Mon, 16 Feb 2026 21:11:42 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DCharter=E7=BC=96?= =?UTF-8?q?=E8=AF=91=E5=99=A8=E4=BE=9D=E8=B5=96=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将blake3替换为sha3(NAC使用SHA3-384哈希算法) - 升级Rust工具链从1.75.0到1.93.1(支持edition2024) - 编译成功,零错误零警告 模块:charter-compiler 状态:生产级别 测试:编译通过 --- charter-compiler/Cargo.toml | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charter-compiler/Cargo.toml b/charter-compiler/Cargo.toml index 55e1076..6f1cf40 100644 --- a/charter-compiler/Cargo.toml +++ b/charter-compiler/Cargo.toml @@ -31,7 +31,7 @@ tracing-subscriber = "0.3" # 工具 hex = "0.4" -blake3 = "1.5" +sha3 = "0.10" [dev-dependencies] tempfile = "3.8" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 8f4161b..5b9d715 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.75.0" +channel = "1.93.1" components = ["rustfmt", "clippy", "rust-src"] targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"] profile = "default"