Skip to content

Commit

Permalink
chore: bump up all non-major dependencies (#91)
Browse files Browse the repository at this point in the history
* chore: bump up all non-major dependencies

* fix image crate

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: LongYinan <lynweklm@gmail.com>
  • Loading branch information
renovate[bot] and Brooooooklyn committed Apr 18, 2024
1 parent da0a3b5 commit dbddaf3
Show file tree
Hide file tree
Showing 5 changed files with 274 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Expand Up @@ -213,7 +213,7 @@ jobs:
- uses: actions/checkout@v4
- name: Build
id: build
uses: cross-platform-actions/action@v0.23.0
uses: cross-platform-actions/action@v0.24.0
env:
DEBUG: 'napi:*'
RUSTUP_HOME: /home/runner/rustup
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"@napi-rs/cli": "^3.0.0-alpha.41",
"@taplo/cli": "^0.7.0",
"@types/node": "^20.11.16",
"@types/sharp": "^0.31.1",
"@types/sharp": "^0.32.0",
"ava": "^6.1.1",
"blurhash": "^2.0.5",
"chalk": "^5.3.0",
Expand Down
12 changes: 4 additions & 8 deletions packages/binding/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ with_simd = ["mozjpeg-sys/nasm_simd_parallel_build"]
[dependencies]
fast_image_resize = "3"
imagequant = "4.0.0"
image = { version = "0.24", default-features = false, features = [
image = { version = "0.25", default-features = false, features = [
"jpeg",
"ico",
"png",
Expand All @@ -28,11 +28,7 @@ image = { version = "0.24", default-features = false, features = [
"bmp",
"webp",
"hdr",
"dxt",
"dds",
"farbfeld",
"jpeg_rayon",
"openexr",
"dds"
] }
jpeg-decoder = "0.3"
libavif = { version = "0.13", default-features = false, features = [
Expand All @@ -50,8 +46,8 @@ once_cell = "1"
png = "0.17"
rexif = "0.7"
rgb = "0.8"
resvg = "0.40"
svgtypes = "0.14"
resvg = "0.41"
svgtypes = "0.15"

[dependencies.oxipng]
default-features = false
Expand Down
2 changes: 1 addition & 1 deletion packages/binding/src/transformer.rs
Expand Up @@ -594,7 +594,7 @@ impl Task for EncodeTask {
dynamic_image.as_bytes(),
dynamic_image.width(),
dynamic_image.height(),
dynamic_image.color(),
dynamic_image.color().into(),
)
.map_err(|err| {
Error::new(
Expand Down

0 comments on commit dbddaf3

Please sign in to comment.