mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
Auto merge of #29549 - servo:dependabot/cargo/image-0.24.6, r=jdm
Bump image from 0.24.5 to 0.24.6 Bumps [image](https://github.com/image-rs/image) from 0.24.5 to 0.24.6. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/image-rs/image/blob/master/CHANGES.md">image's changelog</a>.</em></p> <blockquote> <h3>Version 0.24.6</h3> <ul> <li>Add support for QOI.</li> <li>ImageDecoders now expose ICC profiles on supported formats.</li> <li>Add support for BMPs without a file header.</li> <li>Improved AVIF encoder.</li> <li>WebP decoding fixes.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/image-rs/image/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
This commit is contained in:
commit
c2b2574dc4
1 changed files with 19 additions and 16 deletions
35
Cargo.lock
generated
35
Cargo.lock
generated
|
@ -871,7 +871,7 @@ dependencies = [
|
|||
"euclid",
|
||||
"gfx_traits",
|
||||
"gleam",
|
||||
"image 0.24.5",
|
||||
"image 0.24.6",
|
||||
"ipc-channel",
|
||||
"keyboard-types",
|
||||
"libc",
|
||||
|
@ -2154,9 +2154,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "gif"
|
||||
version = "0.11.4"
|
||||
version = "0.12.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
|
||||
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
|
||||
dependencies = [
|
||||
"color_quant",
|
||||
"weezl",
|
||||
|
@ -2878,9 +2878,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "image"
|
||||
version = "0.24.5"
|
||||
version = "0.24.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "69b7ea949b537b0fd0af141fff8c77690f2ce96f4f41f042ccb6c69c6c965945"
|
||||
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
"byteorder",
|
||||
|
@ -2891,7 +2891,7 @@ dependencies = [
|
|||
"num-rational 0.4.0",
|
||||
"num-traits",
|
||||
"png 0.17.7",
|
||||
"scoped_threadpool",
|
||||
"qoi",
|
||||
"tiff",
|
||||
]
|
||||
|
||||
|
@ -4054,7 +4054,7 @@ dependencies = [
|
|||
"http",
|
||||
"hyper 0.14.5",
|
||||
"hyper_serde",
|
||||
"image 0.24.5",
|
||||
"image 0.24.6",
|
||||
"ipc-channel",
|
||||
"lazy_static",
|
||||
"log",
|
||||
|
@ -4890,6 +4890,15 @@ dependencies = [
|
|||
"time",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "qoi"
|
||||
version = "0.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "quickcheck"
|
||||
version = "1.0.3"
|
||||
|
@ -5241,12 +5250,6 @@ version = "1.0.1"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
||||
|
||||
[[package]]
|
||||
name = "scoped_threadpool"
|
||||
version = "0.1.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
|
||||
|
||||
[[package]]
|
||||
name = "scopeguard"
|
||||
version = "1.1.0"
|
||||
|
@ -5285,7 +5288,7 @@ dependencies = [
|
|||
"html5ever",
|
||||
"http",
|
||||
"hyper_serde",
|
||||
"image 0.24.5",
|
||||
"image 0.24.6",
|
||||
"indexmap",
|
||||
"ipc-channel",
|
||||
"itertools",
|
||||
|
@ -5576,7 +5579,7 @@ dependencies = [
|
|||
"clipboard",
|
||||
"euclid",
|
||||
"getopts",
|
||||
"image 0.24.5",
|
||||
"image 0.24.6",
|
||||
"keyboard-types",
|
||||
"lazy_static",
|
||||
"libc",
|
||||
|
@ -7280,7 +7283,7 @@ dependencies = [
|
|||
"euclid",
|
||||
"headers",
|
||||
"http",
|
||||
"image 0.24.5",
|
||||
"image 0.24.6",
|
||||
"ipc-channel",
|
||||
"keyboard-types",
|
||||
"log",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue