[jobs.all-features-check-all]
command = ["cargo", "check", "--all-targets", "--features=yield_now,egui"]
[jobs.all-features-clippy-all]
command = ["cargo", "clippy", "--all-targets", "--features=yield_now,egui"]
[jobs.test-examples]
command = ["cargo", "test", "--features=yield_now,egui", "--examples"]
[jobs.wasm]
command = ["cargo", "check", "--target", "wasm32-unknown-unknown"]
[jobs.egui-simple]
command = ["cargo", "run", "--example", "egui_simple", "--features=egui"]
[keybindings]
e = "job:test-examples"
c = "job:all-features-clippy-all"
a = "job:all-features-check-all"
alt-e = "job:egui-simple"