Skip to content

Commit ed676dd

Browse files
committed
Bump
1 parent 1f92b91 commit ed676dd

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cavif"
33
description = "Encodes images in AVIF format (image2avif converter) using a pure-Rust encoder."
4-
version = "1.5.5"
4+
version = "1.5.6"
55
authors = ["Kornel Lesiński <kornel@geekhood.net>"]
66
edition = "2021"
77
license = "BSD-3-Clause"
@@ -10,16 +10,16 @@ keywords = ["avif", "png2avif", "jpeg2avif", "convert", "av1"]
1010
categories = ["command-line-utilities", "multimedia::images", "multimedia::encoding"]
1111
homepage = "https://lib.rs/cavif"
1212
repository = "https://github.com/kornelski/cavif-rs"
13-
include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]
14-
rust-version = "1.65"
13+
include = ["README.md", "LICENSE", "/src/*.rs"]
14+
rust-version = "1.70"
1515

1616
[dependencies]
17-
ravif = { version = "0.11.9", path = "./ravif", default-features = false, features = ["threading"] }
17+
ravif = { version = "0.11.11", path = "./ravif", default-features = false, features = ["threading"] }
1818
rayon = "1.10.0"
19-
rgb = { version = "0.8.48", default-features = false }
19+
rgb = { version = "0.8.50", default-features = false }
2020
cocoa_image = { version = "1.0.7", optional = true }
21-
imgref = "1.10.1"
22-
clap = { version = "4.3.24", default-features = false, features = ["color", "suggestions", "wrap_help", "std", "cargo"] }
21+
imgref = "1.11.0"
22+
clap = { version = "4.4.18", default-features = false, features = ["color", "suggestions", "wrap_help", "std", "cargo"] }
2323
load_image = "3.0.3"
2424

2525
[features]
@@ -42,7 +42,7 @@ strip = true
4242
opt-level = 2
4343

4444
[dev-dependencies]
45-
avif-parse = "1.0.0"
45+
avif-parse = "1.3.2"
4646

4747
[badges]
4848
maintenance = { status = "actively-developed" }

ravif/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ avif-serialize = "0.8.2"
1818
rav1e = { version = "0.7.1", default-features = false }
1919
rayon = { version = "1.10.0", optional = true }
2020
rgb = { version = "0.8.50", default-features = false }
21-
imgref = "1.10.1"
21+
imgref = "1.11.0"
2222
loop9 = "0.1.5"
2323
quick-error = "2.0.1"
2424

@@ -38,7 +38,7 @@ debug = false
3838
opt-level = 2
3939

4040
[dev-dependencies]
41-
avif-parse = "1.0.0"
41+
avif-parse = "1.3.2"
4242

4343
[package.metadata.release]
4444
tag = false

0 commit comments

Comments
 (0)