From 2701f990e46f0ecc82e0a06a55e81436684faacb Mon Sep 17 00:00:00 2001 From: lifegpc Date: Wed, 8 Oct 2025 17:44:42 +0800 Subject: [PATCH] Fix doc build (https://github.com/rust-lang/rust/pull/138907) --- .github/workflows/github-pages.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 9374ea5..7edcaf9 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -54,7 +54,7 @@ jobs: submodules: true - name: Install Nightly Rust run: | - rustup toolchain install nightly-2025-07-18-x86_64-pc-windows-msvc --allow-downgrade && rustup default nightly-2025-07-18-x86_64-pc-windows-msvc + rustup toolchain install nightly-2025-10-07-x86_64-pc-windows-msvc --allow-downgrade && rustup default nightly-2025-10-07-x86_64-pc-windows-msvc # - name: Install Nightly Rust # run: | # curl.exe "https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe" -o "rustup-init.exe" && ./rustup-init.exe --default-toolchain nightly -y && rm rustup-init.exe diff --git a/Cargo.lock b/Cargo.lock index 39eedf6..0518dbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1323,7 +1323,7 @@ dependencies = [ [[package]] name = "msg_tool" -version = "0.2.8" +version = "0.2.9" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 7c21f43..782d0c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "msg_tool" -version = "0.2.8" +version = "0.2.9" edition = "2024" repository = "https://github.com/lifegpc/msg-tool" description = "A command-line tool for exporting, importing, packing, and unpacking script files." diff --git a/src/lib.rs b/src/lib.rs index b8fedd1..6e07c71 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! A Rust library for exporting, importing, packing, and unpacking script files. //! //! For more information, please visit the [GitHub repository](https://github.com/lifegpc/msg-tool). -#![cfg_attr(any(docsrs, feature = "unstable"), feature(doc_auto_cfg))] +#![cfg_attr(any(docsrs, feature = "unstable"), feature(doc_cfg))] pub mod ext; pub mod format; pub mod output_scripts;