Skip to content

Commit fea449e

Browse files
committedApr 27, 2024··
Bump
1 parent 1d9b00b commit fea449e

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed
 

‎Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imagequant"
3-
version = "4.3.0"
3+
version = "4.3.1"
44
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."
55
authors = ["Kornel Lesiński <kornel@pngquant.org>"]
66
license = "GPL-3.0-or-later"
@@ -12,7 +12,7 @@ keywords = ["quantization", "palette", "pngquant", "compression", "gif"]
1212
include = ["COPYRIGHT", "src/*.rs", "*.h", "README.md", "Cargo.toml"]
1313
readme = "README.md"
1414
edition = "2021"
15-
rust-version = "1.64"
15+
rust-version = "1.65"
1616

1717
[features]
1818
default = ["threads"]
@@ -31,11 +31,11 @@ panic = "abort"
3131
doctest = false
3232

3333
[dependencies]
34-
arrayvec = "0.7.2"
35-
rgb = { version = "0.8.33", features = ["argb"] }
36-
rayon = { version = "1.5.3", optional = true }
37-
thread_local = { version = "1.1.4", optional = true }
38-
once_cell = "1.13.1"
34+
arrayvec = "0.7.4"
35+
rgb = { version = "0.8.37", features = ["argb"] }
36+
rayon = { version = "1.10.0", optional = true }
37+
thread_local = { version = "1.1.8", optional = true }
38+
once_cell = "1.19.0"
3939

4040
[dev-dependencies]
4141
lodepng = "3.10.0"

‎imagequant-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ name = "imagequant_sys"
2424

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

3030
[package.metadata.capi.library]
3131
name = "imagequant"

‎imagequant-sys/c_test/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ release = false
1414
imagequant-sys = { version = "4.0.3", path = ".." }
1515

1616
[build-dependencies]
17-
cc = "1.0.72"
17+
cc = "1.0.95"

0 commit comments

Comments
 (0)
Please sign in to comment.