Skip to content

Commit

Permalink
chore: apply clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
mokurin000 committed Feb 13, 2024
1 parent 44eee24 commit b26926f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 59 deletions.
56 changes: 0 additions & 56 deletions .github/workflows/rust.yml

This file was deleted.

8 changes: 5 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ fn main() {
use tokio::runtime::Runtime;
use tokio::time;

let mut native_options = eframe::NativeOptions::default();
native_options.follow_system_theme = true;
native_options.persist_window = true;
let native_options = eframe::NativeOptions {
follow_system_theme: true,
persist_window: true,
..Default::default()
};

// Log to stdout (if you run with `RUST_LOG=debug`).
tracing_subscriber::fmt::init();
Expand Down

0 comments on commit b26926f

Please sign in to comment.