Skip to content

Commit a485fbf

Browse files
committed
chore(deps): Update dependencies
1 parent e1dde2a commit a485fbf

File tree

3 files changed

+46
-36
lines changed

3 files changed

+46
-36
lines changed

Cargo.lock

Lines changed: 43 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ahash = "0.8.12"
77
annotate-snippets = { version = "0.11.5", features = ["simd"] }
88
ar = "0.9.0"
99
base64-simd = "0.8.0"
10-
bitflags = { version = "2.9.0", features = ["serde"] }
10+
bitflags = { version = "2.9.1", features = ["serde"] }
1111
bstr = "1.12.0"
1212
bzip2 = "0.5.2"
1313
cached = { version = "0.55.1", features = [
@@ -85,7 +85,7 @@ sysinfo = { version = "0.35.1", default-features = false, features = [
8585
"system",
8686
] }
8787
tar = "0.4.44"
88-
tempfile = "3.19.1"
88+
tempfile = "3.20.0"
8989
thiserror = "2.0.12"
9090
tokio = { version = "1.45.0", features = [
9191
"macros",

crates/konfigkoll_script/src/plugins/filesystem.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ impl TempDir {
6363
fn new() -> KResult<Self> {
6464
let dir = tempfile::TempDir::with_prefix("konfigkoll_")
6565
.wrap_err("Failed to create temporary directory")?
66-
.into_path();
66+
.keep();
6767
match Utf8PathBuf::from_path_buf(dir) {
6868
Ok(path) => Ok(Self { path }),
6969
Err(path) => {

0 commit comments

Comments
 (0)