fix(ci): install SDL2 for Rust tests

This commit is contained in:
Edison Jwa
2026-06-02 19:52:07 +09:00
parent 80c2ed46bc
commit da174806ac
3 changed files with 11 additions and 3 deletions
+7 -1
View File
@@ -78,7 +78,13 @@ wildcards = "warn"
highlight = "all"
# Crates we never want, regardless of license. Empty by default.
deny = []
skip = []
skip = [
# `tracing-android` still depends on android_log-sys 0.2.x while
# flutter_rust_bridge's `android_logger` uses 0.3.x. Both are
# Android-only logcat bindings; keep this targeted until upstreams
# converge.
{ name = "android_log-sys", version = "0.2.0" },
]
skip-tree = []
# ---------- Sources ----------