Skip to content

Commit d06687c

Browse files
Bump the patch group with 4 updates (#277)
Bumps the patch group with 4 updates: [mdbook](https://github.com/rust-lang/mdBook), [serde_json](https://github.com/serde-rs/json), [clap](https://github.com/clap-rs/clap) and [libfuzzer-sys](https://github.com/rust-fuzz/libfuzzer). Updates `mdbook` from 0.4.51 to 0.4.52 - [Release notes](https://github.com/rust-lang/mdBook/releases) - [Changelog](https://github.com/rust-lang/mdBook/blob/master/CHANGELOG.md) - [Commits](rust-lang/mdBook@v0.4.51...v0.4.52) Updates `serde_json` from 1.0.140 to 1.0.142 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.140...v1.0.142) Updates `clap` from 4.5.40 to 4.5.42 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.5.40...clap_complete-v4.5.42) Updates `libfuzzer-sys` from 0.4.9 to 0.4.10 - [Changelog](https://github.com/rust-fuzz/libfuzzer/blob/main/CHANGELOG.md) - [Commits](rust-fuzz/libfuzzer@0.4.9...0.4.10) --- updated-dependencies: - dependency-name: mdbook dependency-version: 0.4.52 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: serde_json dependency-version: 1.0.142 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: clap dependency-version: 4.5.42 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: libfuzzer-sys dependency-version: 0.4.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6ee40cf commit d06687c

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

Cargo.lock

Lines changed: 12 additions & 12 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
@@ -10,8 +10,8 @@ print_stderr = "warn"
1010

1111
[workspace.dependencies]
1212
anyhow = "1.0.98"
13-
mdbook = { version = "0.4.51", default-features = false }
13+
mdbook = { version = "0.4.52", default-features = false }
1414
polib = "0.2.0"
1515
pretty_assertions = "1.4.1"
16-
serde_json = "1.0.140"
16+
serde_json = "1.0.142"
1717
tempfile = "3.20.0"

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ workspace = true
1212

1313
[dependencies]
1414
arbitrary = { version = "1.4.1", features = ["derive"] }
15-
libfuzzer-sys = "0.4.9"
15+
libfuzzer-sys = "0.4.10"
1616
mdbook.workspace = true
1717
mdbook-i18n-helpers = { path = "../i18n-helpers" }
1818
polib.workspace = true

i18n-helpers/src/xgettext.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ fn strip_link(text: &str) -> String {
4141
})
4242
.collect::<Vec<_>>();
4343
let (without_link, _) = reconstruct_markdown(&events, None)
44-
.unwrap_or_else(|_| panic!("Couldn't strip link \"{}\"", text));
44+
.unwrap_or_else(|_| panic!("Couldn't strip link \"{text}\""));
4545
without_link
4646
}
4747

i18n-report/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ workspace = true
1414

1515
[dependencies]
1616
anyhow.workspace = true
17-
clap = { version = "4.5.40", features = ["derive"] }
17+
clap = { version = "4.5.42", features = ["derive"] }
1818
polib.workspace = true
1919
tera = { version = "1.20.0", default-features = false }

i18n-report/src/main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,26 +123,26 @@ fn diff(
123123
match (old, new) {
124124
(None, None) => break,
125125
(Some(old_stats), None) => {
126-
println!("Removed {}", old_stats);
126+
println!("Removed {old_stats}");
127127
old = old_iter.next();
128128
}
129129
(None, Some(new_stats)) => {
130-
println!("Added {}", new_stats);
130+
println!("Added {new_stats}");
131131
new = new_iter.next();
132132
}
133133
(Some(old_stats), Some(new_stats)) => match old_stats.language.cmp(&new_stats.language)
134134
{
135135
std::cmp::Ordering::Less => {
136-
println!("Removed {}", old_stats);
136+
println!("Removed {old_stats}");
137137
old = old_iter.next();
138138
}
139139
std::cmp::Ordering::Greater => {
140-
println!("Added {}", new_stats);
140+
println!("Added {new_stats}");
141141
new = new_iter.next();
142142
}
143143
std::cmp::Ordering::Equal => {
144144
if old_stats != new_stats {
145-
println!("Changed {} -> {}", old_stats, new_stats);
145+
println!("Changed {old_stats} -> {new_stats}");
146146
}
147147
old = old_iter.next();
148148
new = new_iter.next();

0 commit comments

Comments
 (0)