From 7dc6765066bbb346e0b65cb71a4c9d539055ceb2 Mon Sep 17 00:00:00 2001 From: One <43485962+c-git@users.noreply.github.com> Date: Sun, 5 Jan 2025 04:01:08 -0500 Subject: [PATCH] feat: make it easier to find problems with egui --- .vscode/settings.json | 2 +- bacon.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 3f3bebe..f8f20ed 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,5 @@ "jsvalue" ], // "rust-analyzer.cargo.target": "wasm32-unknown-unknown" // Uncomment to use rust-analyzer on wasm code instead - "rust-analyzer.cargo.features": ["yield_now"] + "rust-analyzer.cargo.features": ["yield_now", "egui"] } diff --git a/bacon.toml b/bacon.toml index d69eef6..5fccbfc 100644 --- a/bacon.toml +++ b/bacon.toml @@ -1,5 +1,5 @@ [jobs.test_examples] -command = ["cargo", "test", "--features=yield_now", "--examples"] +command = ["cargo", "test", "--features=yield_now,egui", "--examples"] need_stdout = true [keybindings]