Skip to content

Commit

Permalink
Update bitvec_helpers & hevc_parser
Browse files Browse the repository at this point in the history
  • Loading branch information
quietvoid committed Jun 15, 2024
1 parent 03e41c4 commit 96825b0
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 41 deletions.
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dovi_tool"
version = "2.1.1"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.79.0"
license = "MIT"
repository = "https://github.com/quietvoid/dovi_tool"
build = "build.rs"
Expand All @@ -14,13 +14,13 @@ path = "src/main.rs"

[dependencies]
dolby_vision = { path = "dolby_vision", "features" = ["xml", "serde"] }
bitvec_helpers = { version = "3.1.4", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.2", features = ["hevc_io"] }
bitvec_helpers = { version = "3.1.5", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.3", features = ["hevc_io"] }
madvr_parse = "1.0.2"
hdr10plus = { version = "2.1.1", features = ["json"] }

anyhow = "1.0.86"
clap = { version = "4.5.4", features = ["derive", "wrap_help", "deprecated"] }
clap = { version = "4.5.7", features = ["derive", "wrap_help", "deprecated"] }
clap_lex = "*"
indicatif = "0.17.8"
bitvec = "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The C compatible library is also known as **`libdovi`**, refer to the same docum
## **Building**
### **Toolchain**

The minimum Rust version to build **`dovi_tool`** is 1.74.0.
The minimum Rust version to build **`dovi_tool`** is 1.79.0.

### **Dependencies**
On Linux systems, [fontconfig](https://github.com/yeslogic/fontconfig-rs#dependencies) is required.
Expand Down
6 changes: 3 additions & 3 deletions dolby_vision/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name = "dolby_vision"
version = "3.3.0"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.62.1"
rust-version = "1.79.0"
license = "MIT"
description = "Dolby Vision metadata parsing and writing"
repository = "https://github.com/quietvoid/dovi_tool/tree/main/dolby_vision"

[dependencies]
bitvec_helpers = { version = "3.1.4", default-features = false, features = ["bitstream-io"] }
bitvec_helpers = { version = "3.1.5", default-features = false, features = ["bitstream-io"] }
anyhow = "1.0.86"
bitvec = "1.0.1"
crc = "3.0.1"
crc = "3.2.1"
roxmltree = { version = "0.20.0", optional = true }
serde = { version = "1.0.203", features = ["derive"], "optional" = true }
serde_json = { version = "1.0.117", features = ["preserve_order"], "optional" = true }
Expand Down
2 changes: 1 addition & 1 deletion dolby_vision/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ See [changelog](CHANGELOG.md) for API changes.

### Toolchain

The minimum Rust version to use `dolby_vision` is 1.62.1.
The minimum Rust version to use `dolby_vision` is 1.79.0.

 

Expand Down

0 comments on commit 96825b0

Please sign in to comment.