Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Nov 19, 2021
1 parent 37847b9 commit b0a2d76
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 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). Pure Rust."
version = "1.3.2"
version = "1.3.3"
authors = ["Kornel Lesiński <kornel@geekhood.net>"]
edition = "2018"
license = "BSD-3-Clause"
Expand All @@ -13,11 +13,11 @@ repository = "https://github.com/kornelski/cavif-rs"
include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]

[dependencies]
ravif = { version = "0.8.6", path = "./ravif", default-features = false }
ravif = { version = "0.8.8", path = "./ravif", default-features = false }
lodepng = "3.4.6"
num_cpus = "1.13.0"
rayon = "1.5.1"
rgb = "0.8.27"
rgb = "0.8.29"
cocoa_image = { version = "1.0.4", optional = true }
imgref = "1.9.1"
jpeg-decoder = "0.1.22"
Expand Down
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.8.7"
version = "0.8.8"
authors = ["Kornel Lesiński <kornel@geekhood.net>"]
edition = "2018"
license = "BSD-3-Clause"
Expand All @@ -16,14 +16,14 @@ resolver = "2"
[dependencies]
avif-serialize = "0.7.5"
num_cpus = "1.13.0"
rav1e = { version = "0.5.0-beta.2", default-features = false }
rav1e = { version = "0.5.0", default-features = false }
rayon = "1.5.1"
rgb = "0.8.27"
rgb = "0.8.29"
imgref = "1.9.1"
loop9 = "0.1.3"

[target.'cfg(target_arch = "wasm32")'.dependencies]
rav1e = { version = "0.5.0-beta.2", features = ["wasm"] }
rav1e = { version = "0.5.0", features = ["wasm"] }

[features]
default = ["asm"]
Expand Down

0 comments on commit b0a2d76

Please sign in to comment.