Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed Dec 20, 2024
1 parent 3f1dd5f commit 3fddbe4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ htp = { git = "https://github.com/pamburus/htp.git" }
humantime = "2"
itertools = "0.13"
itoa = { version = "1", default-features = false }
known-folders = "1"
log = "0"
nonzero_ext = "0"
notify = { version = "7", features = ["macos_kqueue"] }
Expand Down
2 changes: 1 addition & 1 deletion src/appdirs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ mod sys {
pub(crate) fn system_config_dirs() -> Vec<PathBuf> {
use known_folders::{get_known_folder_path, KnownFolder};

get_known_folder_path(KnownFolder::ProgramData).to_vec()
get_known_folder_path(KnownFolder::ProgramData).into_iter().collect()
}
}

0 comments on commit 3fddbe4

Please sign in to comment.