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 878fce3 commit 9070913Copy full SHA for 9070913
src/folder.rs
@@ -244,7 +244,7 @@ impl Background for FolderScan {
244
#[test]
245
fn it_walks() {
246
use crate::background::BackgroundHandle;
247
- use crate::settings::Config;
+ use crate::config::Config;
248
249
let gs = Config::default().globset().unwrap();
250
let scanner = FolderScan::new("C:\\Games", gs);
src/main.rs
@@ -1,4 +1,5 @@
1
-#![windows_subsystem = "windows"]
+#![cfg_attr(not(test), windows_subsystem = "windows")]
2
+#![cfg_attr(test, windows_subsystem = "console")]
3
#![allow(non_snake_case)]
4
5
mod backend;
0 commit comments