Skip to content

Commit 09df10c

Browse files
author
Stephan Dilly
committed
fix new clippy warning
Fix ci clippy task
1 parent cc19fca commit 09df10c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
- name: Run tests
2525
run: make test
2626
- name: Run clippy
27-
run: make clippy
27+
run: |
28+
rustup component add clippy
29+
make clippy
2830
- name: Build Release
2931
run: make build-release
3032
- name: Build Win Test Release

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use io::Write;
2727
use log::error;
2828
use scopeguard::defer;
2929
use scopetime::scope_time;
30-
use simplelog::*;
30+
use simplelog::{Config, LevelFilter, WriteLogger};
3131
use std::{
3232
env, fs,
3333
fs::File,

0 commit comments

Comments
 (0)