Skip to content

Commit a963569

Browse files
authored
chore(deps): bump the crate-deps group with 5 updates
2 parents e46e155 + f79e464 commit a963569

File tree

6 files changed

+69
-118
lines changed

6 files changed

+69
-118
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ samples/*
66
!samples/*.png
77
samples/*_bordered*
88

9+
output
10+
911
# Generated by Cargo
1012
# will have compiled files and executables
1113
debug/

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ rust-version = "1.85"
1515
resolver = "3"
1616

1717
[dependencies]
18-
clap = { version = "4.5.31", features = ["derive"] }
18+
clap = { version = "4.5.35", features = ["derive"] }
1919
csscolorparser = "0.7.0"
20-
env_logger = "0.11.6"
21-
image = { version = "0.25.5", features = ["rayon"] }
22-
log = "0.4.26"
20+
env_logger = "0.11.8"
21+
image = { version = "0.25.6", features = ["bmp", "gif", "hdr", "ico", "jpeg", "png", "tga", "tiff", "webp", "rayon"], default-features = false }
22+
log = "0.4.27"
2323
rayon = "1.10.0"
2424
walkdir = "2.5.0"
2525
regex = "1.11.1"
@@ -33,5 +33,5 @@ unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
3333

3434
[dev-dependencies]
3535
fs_extra = "1.3.0"
36-
tempfile = "3.17.1"
36+
tempfile = "3.19.1"
3737
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }

deny.toml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,6 @@
11
[licenses]
22
allow = [
33
"Apache-2.0",
4-
"Apache-2.0 WITH LLVM-exception",
5-
"BSD-2-Clause",
6-
"BSD-3-Clause",
74
"MIT",
8-
"NCSA",
95
"Unicode-3.0",
10-
]
11-
12-
[bans]
13-
skip = [
14-
"thiserror@1.0.69",
15-
#└── rav1e v0.7.1 <- fixed in `master`, but no release yet
16-
# └── ravif v0.11.11
17-
# └── image v0.25.5
18-
# └── oliframe v0.2.4
19-
"thiserror-impl@1.0.69"
20-
#└── thiserror v1.0.69
21-
# └── rav1e v0.7.1 <- fixed in `master`, but no release yet
22-
# └── ravif v0.11.11
23-
# └── image v0.25.5
24-
# └── oliframe v0.2.4
256
]

output/sample24.png

-351 KB
Binary file not shown.

src/frame/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ mod tests {
130130
let result = Frame::process(file_pair, &config, false);
131131
assert!(result.is_ok());
132132
assert_eq!(
133-
"709d92f5f11ca386".to_string(),
133+
"ecc66af0173bb87c".to_string(),
134134
hash_file(&temp_dir.path().join("test_01.jpg"))
135135
);
136136
}
@@ -155,7 +155,7 @@ mod tests {
155155
assert!(result.is_ok());
156156
assert_eq!(
157157
hash_file(&temp_dir.path().join("test_02.jpeg")),
158-
"a646732829f8f8a1".to_string()
158+
"136bf883d5ad6df6".to_string()
159159
);
160160
}
161161

0 commit comments

Comments
 (0)