Skip to content

Commit aadb85c

Browse files
authored
Merge pull request #242 from dschrempf/dependabot/cargo/log-0.4.27
Bump log from 0.4.26 to 0.4.27
2 parents 313137b + a9b4872 commit aadb85c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

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

nix-script-directives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
anyhow = "1.0.97"
8-
log = "0.4.26"
8+
log = "0.4.27"
99
rnix = "0.12.0"
1010
rowan = "0.15.16"
1111
serde = { version = "1.0.219", features = [ "derive" ] }

nix-script-haskell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
anyhow = "1.0.97"
88
clap = { version = "4.5.34", features = [ "std", "color", "suggestions", "derive", "cargo", "env" ] }
99
nix-script-directives = { path = "../nix-script-directives" }
10-
log = "0.4.26"
10+
log = "0.4.27"
1111
env_logger = "0.11.6"
1212

1313
[dev-dependencies]

nix-script/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ directories = "6.0.0"
1010
env_logger = "0.11.6"
1111
fs2 = "0.4.3"
1212
lazy_static = "1.5.0"
13-
log = "0.4.26"
13+
log = "0.4.27"
1414
nix-script-directives = { path = "../nix-script-directives" }
1515
once_cell = "1.21.3"
1616
path-absolutize = "3.1.1"

nix-script/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ impl Builder {
157157
.context("could not prepare derivation to build")?;
158158

159159
log::debug!("writing derivation to {}", build_path.display());
160-
log::trace!("derivation contents: {}", derivation.to_string());
160+
log::trace!("derivation contents: {}", derivation);
161161
fs::write(build_path.join("default.nix"), derivation.to_string())
162162
.context("could not write derivation contents")?;
163163
}

0 commit comments

Comments
 (0)