automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-08-13 18:52:40 +00:00 committed by github-actions[bot]
parent 62ee0ee0ab
commit 5ad9ad4f3a
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ use std::fmt::Display;
use egui::{epaint::PathStroke, *};
use egui::{vec2, Pos2, Rect};
use libpt::log::{debug, trace};
use libpt::log::debug;
use rand::Rng;
use strum::{EnumIter, IntoEnumIterator};

View File

@ -6,7 +6,7 @@ mod app;
// When compiling natively:
#[cfg(not(target_arch = "wasm32"))]
fn main() -> eframe::Result {
use libpt::log::{debug, error};
use libpt::log::debug;
use tracing_subscriber::util::SubscriberInitExt;
let mut app = app::RollatorApp::new_with_cli();