Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Sep 21, 2023
1 parent a0a3652 commit e7e743a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 7 additions & 3 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.3"
version = "1.5.4"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -17,9 +17,9 @@ rust-version = "1.64"
ravif = { version = "0.11.2", path = "./ravif", default-features = false }
rayon = "1.7.0"
rgb = "0.8.36"
cocoa_image = { version = "1.0.5", optional = true }
cocoa_image = { version = "1.0.6", optional = true }
imgref = "1.9.4"
clap = { version = "4.2.7", default-features = false, features = ["color", "suggestions", "wrap_help", "std", "cargo"] }
clap = { version = "4.3.24", default-features = false, features = ["color", "suggestions", "wrap_help", "std", "cargo"] }
load_image = "3.0.3"

[features]
Expand Down Expand Up @@ -49,3 +49,7 @@ maintenance = { status = "actively-developed" }

[workspace]
members = ["ravif"]

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]
8 changes: 4 additions & 4 deletions ravif/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ravif"
description = "rav1e-based pure Rust library for encoding images in AVIF format (powers the `cavif` tool)"
version = "0.11.2"
version = "0.11.3"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2021"
license = "BSD-3-Clause"
Expand All @@ -14,9 +14,9 @@ include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]

[dependencies]
avif-serialize = "0.8.1"
rav1e = { version = "0.6.5", default-features = false, features = ["threading"] }
rayon = "1.6.1"
rgb = "0.8.34"
rav1e = { version = "0.6.6", default-features = false, features = ["threading"] }
rayon = "1.7.0"
rgb = "0.8.36"
imgref = "1.9.4"
loop9 = "0.1.3"
quick-error = "2.0.1"
Expand Down

0 comments on commit e7e743a

Please sign in to comment.