Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# -----------------------------------------------------------------------------
# Section identical to scripts/clippy_wasm/clippy.toml:

msrv = "1.85"
msrv = "1.88"

allow-unwrap-in-tests = true

Expand All @@ -28,7 +28,7 @@
# -----------------------------------------------------------------------------

# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_macros
disallowed-macros = ['dbg']

Check warning on line 31 in clippy.toml

View workflow job for this annotation

GitHub Actions / Rust

`dbg` does not refer to an existing macro

# https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_methods
disallowed-methods = [
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion scripts/clippy_wasm/clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# -----------------------------------------------------------------------------
# Section identical to the main clippy.toml:

msrv = "1.85"
msrv = "1.88"

allow-unwrap-in-tests = true

Expand Down Expand Up @@ -37,12 +37,12 @@
{ path = "poll_promise::Promise::block_until_ready_mut", reason = "Cannot block on Web" },
{ path = "poll_promise::Promise::block_until_ready", reason = "Cannot block on Web" },
{ path = "rayon::spawn", reason = "Cannot spawn threads on wasm" },
{ path = "std::sync::mpsc::Receiver::into_iter", reason = "Cannot block on Web" },

Check warning on line 40 in scripts/clippy_wasm/clippy.toml

View workflow job for this annotation

GitHub Actions / Check wasm32

`std::sync::mpsc::Receiver::into_iter` does not refer to an existing function
{ path = "std::sync::mpsc::Receiver::iter", reason = "Cannot block on Web" },
{ path = "std::sync::mpsc::Receiver::recv_timeout", reason = "Cannot block on Web" },
{ path = "std::sync::mpsc::Receiver::recv", reason = "Cannot block on Web" },
{ path = "std::thread::spawn", reason = "Cannot spawn threads on wasm" },
{ path = "std::time::Duration::elapsed", reason = "use `web-time` crate instead for wasm/web compatibility" },

Check warning on line 45 in scripts/clippy_wasm/clippy.toml

View workflow job for this annotation

GitHub Actions / Check wasm32

`std::time::Duration::elapsed` does not refer to an existing function
{ path = "std::time::Instant::now", reason = "use `web-time` crate instead for wasm/web compatibility" },
{ path = "std::time::SystemTime::now", reason = "use `web-time` or `time` crates instead for wasm/web compatibility" },
]
Expand Down
Loading