diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index bf34557..0bc229a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rust-docs, clippy, rustfmt - toolchain: 1.85.0 + toolchain: 1.88.0 override: true - name: Install packages (Linux) @@ -106,7 +106,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.85.0 + toolchain: 1.88.0 override: true target: wasm32-unknown-unknown components: clippy,rustfmt @@ -131,6 +131,6 @@ jobs: - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v2 with: - rust-version: "1.85.0" + rust-version: "1.88.0" log-level: warn command: check diff --git a/CHANGELOG.md b/CHANGELOG.md index 50b65a0..98b1d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ ## 0.3.0 - 2025-02-05 - Update to egui 0.31 * Update to egui 0.31 [#22](https://github.com/rerun-io/egui_table/pull/22) by [@emilk](https://github.com/emilk) -* Update MSRV to 1.85 [#21](https://github.com/rerun-io/egui_table/pull/21) by [@emilk](https://github.com/emilk) +* Update MSRV to 1.81 [#21](https://github.com/rerun-io/egui_table/pull/21) by [@emilk](https://github.com/emilk) * Fix ghost column when no sticky columns [#20](https://github.com/rerun-io/egui_table/pull/20) by [@EpixScripts](https://github.com/EpixScripts) diff --git a/Cargo.toml b/Cargo.toml index aab2a0f..df2a88a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = ["egui_table", "demo"] [workspace.package] edition = "2024" license = "MIT OR Apache-2.0" -rust-version = "1.85" +rust-version = "1.88" version = "0.4.0" diff --git a/clippy.toml b/clippy.toml index 879f45a..f71ee7d 100644 --- a/clippy.toml +++ b/clippy.toml @@ -5,7 +5,7 @@ # ----------------------------------------------------------------------------- # Section identical to scripts/clippy_wasm/clippy.toml: -msrv = "1.85" +msrv = "1.88" allow-unwrap-in-tests = true diff --git a/rust-toolchain b/rust-toolchain index 4085873..9d6f61e 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -5,6 +5,6 @@ # to the user in the error, instead of "error: invalid channel name '[toolchain]'". [toolchain] -channel = "1.85" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145 +channel = "1.88" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145 components = ["rustfmt", "clippy"] targets = ["wasm32-unknown-unknown"] diff --git a/scripts/clippy_wasm/clippy.toml b/scripts/clippy_wasm/clippy.toml index 86db17e..c80aa31 100644 --- a/scripts/clippy_wasm/clippy.toml +++ b/scripts/clippy_wasm/clippy.toml @@ -8,7 +8,7 @@ # ----------------------------------------------------------------------------- # Section identical to the main clippy.toml: -msrv = "1.85" +msrv = "1.88" allow-unwrap-in-tests = true