We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc19fca commit 09df10cCopy full SHA for 09df10c
.github/workflows/ci.yml
@@ -24,7 +24,9 @@ jobs:
24
- name: Run tests
25
run: make test
26
- name: Run clippy
27
- run: make clippy
+ run: |
28
+ rustup component add clippy
29
+ make clippy
30
- name: Build Release
31
run: make build-release
32
- name: Build Win Test Release
src/main.rs
@@ -27,7 +27,7 @@ use io::Write;
use log::error;
use scopeguard::defer;
use scopetime::scope_time;
-use simplelog::*;
+use simplelog::{Config, LevelFilter, WriteLogger};
use std::{
env, fs,
33
fs::File,
0 commit comments