Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Apr 27, 2024
1 parent 1d9b00b commit fea449e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imagequant"
version = "4.3.0"
version = "4.3.1"
description = "Convert 24/32-bit images to 8-bit palette with alpha channel.\nFor lossy PNG compression and high-quality GIF images\nDual-licensed like pngquant. See https://pngquant.org for details."
authors = ["Kornel Lesiński <kornel@pngquant.org>"]
license = "GPL-3.0-or-later"
Expand All @@ -12,7 +12,7 @@ keywords = ["quantization", "palette", "pngquant", "compression", "gif"]
include = ["COPYRIGHT", "src/*.rs", "*.h", "README.md", "Cargo.toml"]
readme = "README.md"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"

[features]
default = ["threads"]
Expand All @@ -31,11 +31,11 @@ panic = "abort"
doctest = false

[dependencies]
arrayvec = "0.7.2"
rgb = { version = "0.8.33", features = ["argb"] }
rayon = { version = "1.5.3", optional = true }
thread_local = { version = "1.1.4", optional = true }
once_cell = "1.13.1"
arrayvec = "0.7.4"
rgb = { version = "0.8.37", features = ["argb"] }
rayon = { version = "1.10.0", optional = true }
thread_local = { version = "1.1.8", optional = true }
once_cell = "1.19.0"

[dev-dependencies]
lodepng = "3.10.0"
Expand Down
4 changes: 2 additions & 2 deletions imagequant-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ name = "imagequant_sys"

[dependencies]
imagequant = { path = "..", version = "4.2.1", default-features = false, features = ["_internal_c_ffi"] }
bitflags = "2.0"
libc = "0.2.112"
bitflags = "2.5"
libc = "0.2.153"

[package.metadata.capi.library]
name = "imagequant"
Expand Down
2 changes: 1 addition & 1 deletion imagequant-sys/c_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ release = false
imagequant-sys = { version = "4.0.3", path = ".." }

[build-dependencies]
cc = "1.0.72"
cc = "1.0.95"

0 comments on commit fea449e

Please sign in to comment.