-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
19ccb40
commit a3f5424
Showing
4 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vvdec" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
edition = "2021" | ||
authors = ["Carlos Bentzen <[email protected]>"] | ||
description = "Rust bindings for VVdeC" | ||
|
@@ -10,7 +10,7 @@ exclude = ["tests/", ".devcontainer/", ".github/"] | |
|
||
[dependencies] | ||
thiserror = "1" | ||
vvdec-sys = { path = "./vvdec-sys", version = "0.4.1-alpha.1" } | ||
vvdec-sys = { path = "./vvdec-sys", version = "0.4.1" } | ||
|
||
[workspace] | ||
members = ["vvdec-sys", "vvdecli"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vvdec-sys" | ||
version = "0.4.1-alpha.1" | ||
version = "0.4.1" | ||
edition = "2021" | ||
links = "vvdec" | ||
authors = ["Carlos Bentzen <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vvdecli" | ||
version = "0.5.0" | ||
version = "0.5.1" | ||
edition = "2021" | ||
authors = ["Carlos Bentzen <[email protected]>"] | ||
description = "CLI application for decoding VVC bitstreams" | ||
|
@@ -12,7 +12,7 @@ exclude = ["tests/"] | |
anyhow = "1" | ||
clap = { version = "4", features = ["derive"] } | ||
thiserror = "1" | ||
vvdec = { path = "..", version = "0.5.0" } | ||
vvdec = { path = "..", version = "0.5.1" } | ||
y4m = "0.8" | ||
|
||
[dev-dependencies] | ||
|