Skip to content

Commit

Permalink
Use git version of rav1e
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jul 30, 2021
1 parent a5e5d18 commit e695013
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.0"
version = "1.3.1"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down
8 changes: 6 additions & 2 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.4"
version = "0.8.5"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2018"
license = "BSD-3-Clause"
Expand All @@ -11,16 +11,20 @@ categories = ["multimedia::images", "multimedia::encoding"]
homepage = "https://lib.rs/ravif"
repository = "https://github.com/kornelski/cavif-rs"
include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]
resolver = "2"

[dependencies]
avif-serialize = "0.7.2"
num_cpus = "1.13.0"
rav1e = { version = "0.5.0-alpha", default-features = false }
rav1e = { git = "https://github.com/xiph/rav1e", rev="f6c841fe9234e9e08a801e884bec1d91a3c6f9f4", default-features = false }
rayon = "1.5.1"
rgb = "0.8.27"
imgref = "1.9.0"
loop9 = "0.1.3"

[target.'cfg(target_arch = "wasm32")'.dependencies]
rav1e = { git = "https://github.com/xiph/rav1e", rev="f6c841fe9234e9e08a801e884bec1d91a3c6f9f4", features = ["wasm"] }

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

0 comments on commit e695013

Please sign in to comment.