Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
goingforbrooke committed Jan 23, 2025
2 parents 4cd277a + bbda6ec commit ebe23bf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions folsum/src/export_csv.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
#[cfg(not(target_arch = "wasm32"))]
use std::collections::HashMap;
#[cfg(not(target_arch = "wasm32"))]
use std::fs::File;
#[cfg(not(target_arch = "wasm32"))]
use std::io::Write;
#[cfg(not(target_arch = "wasm32"))]
use std::path::PathBuf;
#[cfg(not(target_arch = "wasm32"))]
use std::sync::{Arc, Mutex, MutexGuard};
#[cfg(not(target_arch = "wasm32"))]
use std::thread;
#[allow(unused)]
use log::{debug, error, info, trace, warn};
#[cfg(not(target_arch = "wasm32"))]
use crate::sort_counts;

#[cfg(not(target_arch = "wasm32"))]
Expand Down
1 change: 1 addition & 0 deletions folsum/src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ impl eframe::App for FolsumGui {
summarization_path,
#[cfg(not(target_arch = "wasm32"))]
export_file,
#[cfg(not(target_arch = "wasm32"))]
summarization_start,
time_taken,
..
Expand Down
5 changes: 5 additions & 0 deletions folsum/src/summarize.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#[cfg(not(target_arch = "wasm32"))]
use std::collections::HashMap;
#[cfg(not(target_arch = "wasm32"))]
use std::ffi::{OsStr, OsString};
#[cfg(not(target_arch = "wasm32"))]
use std::path::PathBuf;
#[cfg(not(target_arch = "wasm32"))]
use std::sync::{Arc, Mutex};
#[cfg(not(target_arch = "wasm32"))]
use std::time::{Duration, Instant};
#[cfg(not(target_arch = "wasm32"))]
use std::thread;

#[allow(unused)]
Expand Down

0 comments on commit ebe23bf

Please sign in to comment.