Skip to content

Commit 4c216e1

Browse files
committed
Bump
1 parent 7255f54 commit 4c216e1

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imagequant"
3-
version = "4.4.1"
3+
version = "4.5.0"
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 <[email protected]>"]
66
license = "GPL-3.0-or-later"

imagequant-sys/Cargo.toml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imagequant-sys"
3-
version = "4.1.0"
3+
version = "4.2.0"
44
description = "Convert 24/32-bit images to 8-bit palette with alpha channel.\nC API/FFI libimagequant that powers pngquant lossy PNG compressor.\n\nDual-licensed like pngquant. See https://pngquant.org for details."
55
authors = ["Kornel Lesiński <[email protected]>"]
66
license = "GPL-3.0-or-later"
@@ -14,7 +14,17 @@ readme = "README.md"
1414
edition = "2021"
1515
links = "imagequant"
1616
build = "build.rs"
17-
rust-version = "1.63"
17+
rust-version = "1.64"
18+
19+
[features]
20+
default = ["imagequant/default"]
21+
22+
# libimagequant makes good use of multi-threading, so disabling threads has a significant performance peanalty
23+
threads = ["imagequant/threads"]
24+
25+
26+
# internal for cargo-c only <http://lib.rs/cargo-c>
27+
capi = []
1828

1929
[lib]
2030
crate-type = ["staticlib", "lib"]
@@ -23,7 +33,7 @@ path = "src/ffi.rs"
2333
name = "imagequant_sys"
2434

2535
[dependencies]
26-
imagequant = { path = "..", version = "4.4.0", default-features = false, features = ["_internal_c_ffi"] }
36+
imagequant = { path = "..", version = "4.5.0", default-features = false, features = ["_internal_c_ffi"] }
2737
bitflags = "2.5"
2838
libc = "0.2.153"
2939

@@ -50,8 +60,3 @@ tag-message = ""
5060
tag-prefix = ""
5161
tag-name = "{{version}}"
5262

53-
[features]
54-
# internal for cargo-c only
55-
capi = []
56-
default = ["imagequant/default"]
57-
threads = ["imagequant/threads"]

0 commit comments

Comments
 (0)