Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zero committed Feb 7, 2022
1 parent ba08fd3 commit 32f4a00
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ license = "MIT"
name = "dav1d"
readme = "README.md"
repository = "https://github.com/rust-av/dav1d-rs"
version = "0.6.1"
version = "0.7.0"

[dependencies]
dav1d-sys = { version = "0.3.5", path = "dav1d-sys" }
dav1d-sys = { version = "0.4.0", path = "dav1d-sys" }

[workspace]
members = ["dav1d-sys", "tools"]
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ However you can optionally build and statically link libdav1d into the -sys bind
$ SYSTEM_DEPS_DAV1D_BUILD_INTERNAL=always cargo build
```

## Supported versions

The high level bindings require dav1d 0.9.2

## TODO
- [x] Simple bindings
- [x] Safe abstraction
- [ ] Examples

[1]: https://github.com/rust-lang-nursery/rust-bindgen
[1]: https://github.com/rust-lang/rust-bindgen
[2]: https://code.videolan.org/videolan/dav1d
2 changes: 1 addition & 1 deletion dav1d-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dav1d-sys"
version = "0.3.5"
version = "0.4.0"
authors = ["Luca Barbato <lu_zero@gentoo.org>"]
license = "MIT"
description = "FFI bindings to dav1d"
Expand Down
2 changes: 1 addition & 1 deletion tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luca Barbato <lu_zero@gentoo.org>"]
edition = "2018"

[dependencies]
dav1d = { path = "..", version = "0.6.0" }
dav1d = { path = "..", version = "0.7.0" }
bitstream-io = "1.0"
log = "0.4"
structopt = "0.3"

0 comments on commit 32f4a00

Please sign in to comment.