1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Update to accesskit 0.10.1 (#2855)

* Update to accesskit 0.10.1

* Add helper script to run cargo deny
This commit is contained in:
Emil Ernerfeldt
2023-03-30 10:23:54 +02:00
committed by GitHub
parent 5fc5f087ff
commit 5cdbce04a8
5 changed files with 50 additions and 64 deletions

15
sh/cargo-deny.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -eu
script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
cd "$script_path/.."
set -x
# cargo install cargo-deny
cargo deny --all-features --log-level error --target aarch64-apple-darwin check
cargo deny --all-features --log-level error --target aarch64-linux-android check
cargo deny --all-features --log-level error --target wasm32-unknown-unknown check
cargo deny --all-features --log-level error --target x86_64-apple-darwin check
cargo deny --all-features --log-level error --target x86_64-pc-windows-msvc check
cargo deny --all-features --log-level error --target x86_64-unknown-linux-gnu check
cargo deny --all-features --log-level error --target x86_64-unknown-linux-musl check

View File

@@ -55,10 +55,7 @@ cargo doc --document-private-items --no-deps --all-features
cargo cranky --target wasm32-unknown-unknown --all-features -p egui_demo_app --lib -- -D warnings
# cargo install cargo-deny
cargo deny --all-features --log-level error check
cargo deny --all-features --log-level error --target wasm32-unknown-unknown check
cargo deny --all-features --log-level error --target x86_64-unknown-linux-musl check
./sh/cargo_deny.sh
# TODO(emilk): consider using https://github.com/taiki-e/cargo-hack or https://github.com/frewsxcv/cargo-all-features