Skip to content

Commit 02ee968

Browse files
committed
Update to egui and eframe 0.26
1 parent 50ce36a commit 02ee968

File tree

3 files changed

+41
-22
lines changed

3 files changed

+41
-22
lines changed

Cargo.lock

Lines changed: 34 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ rust-version = "1.72"
77

88

99
[dependencies]
10-
egui = "0.25.0"
11-
eframe = { version = "0.25.0", default-features = false, features = [
10+
egui = "0.26.0"
11+
eframe = { version = "0.26.0", default-features = false, features = [
1212
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
1313
"default_fonts", # Embed the default egui fonts.
1414
"glow", # Use the glow rendering backend. Alternative: "wgpu".

check.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This scripts runs various CI-like checks in a convenient way.
33
set -eux
44

5-
cargo check --workspace --all-targets
6-
cargo check --workspace --all-features --lib --target wasm32-unknown-unknown
5+
cargo check --quiet --workspace --all-targets
6+
cargo check --quiet --workspace --all-features --lib --target wasm32-unknown-unknown
77
cargo fmt --all -- --check
8-
cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all
9-
cargo test --workspace --all-targets --all-features
10-
cargo test --workspace --doc
8+
cargo clippy --quiet --workspace --all-targets --all-features -- -D warnings -W clippy::all
9+
cargo test --quiet --workspace --all-targets --all-features
10+
cargo test --quiet --workspace --doc
1111
trunk build

0 commit comments

Comments
 (0)