Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Nov 20, 2024
1 parent 1f92b91 commit ed676dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cavif"
description = "Encodes images in AVIF format (image2avif converter) using a pure-Rust encoder."
version = "1.5.5"
version = "1.5.6"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -10,16 +10,16 @@ keywords = ["avif", "png2avif", "jpeg2avif", "convert", "av1"]
categories = ["command-line-utilities", "multimedia::images", "multimedia::encoding"]
homepage = "https://lib.rs/cavif"
repository = "https://github.com/kornelski/cavif-rs"
include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]
rust-version = "1.65"
include = ["README.md", "LICENSE", "/src/*.rs"]
rust-version = "1.70"

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

[features]
Expand All @@ -42,7 +42,7 @@ strip = true
opt-level = 2

[dev-dependencies]
avif-parse = "1.0.0"
avif-parse = "1.3.2"

[badges]
maintenance = { status = "actively-developed" }
Expand Down
4 changes: 2 additions & 2 deletions ravif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ avif-serialize = "0.8.2"
rav1e = { version = "0.7.1", default-features = false }
rayon = { version = "1.10.0", optional = true }
rgb = { version = "0.8.50", default-features = false }
imgref = "1.10.1"
imgref = "1.11.0"
loop9 = "0.1.5"
quick-error = "2.0.1"

Expand All @@ -38,7 +38,7 @@ debug = false
opt-level = 2

[dev-dependencies]
avif-parse = "1.0.0"
avif-parse = "1.3.2"

[package.metadata.release]
tag = false

0 comments on commit ed676dd

Please sign in to comment.