Skip to content

Commit

Permalink
Bump 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 70a5ecc commit c5966b8
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,15 +3,15 @@ name = "hdr10plus_tool"
version = "1.6.0"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.79.0"
license = "MIT"

[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"] }
hdr10plus = { path = "./hdr10plus", features = ["hevc", "json"] }
hevc_parser = { version = "0.6.2", features = ["hevc_io"] }
hevc_parser = { version = "0.6.3", features = ["hevc_io"] }

clap = { version = "4.5.4", features = ["derive", "wrap_help", "deprecated"] }
clap = { version = "4.5.7", features = ["derive", "wrap_help", "deprecated"] }
serde_json = { version = "1.0.117", features = ["preserve_order"] }
indicatif = "0.17.8"
anyhow = "1.0.86"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Previously named `hdr10plus_parser`, now it's more than just a parser.
## **Building**
### **Toolchain**

The minimum Rust version to build **`hdr10plus_tool`** is 1.70.0.
The minimum Rust version to build **`hdr10plus_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 hdr10plus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name = "hdr10plus"
version = "2.1.2"
authors = ["quietvoid"]
edition = "2021"
rust-version = "1.60.0"
rust-version = "1.79.0"
license = "MIT"
description = "HDR10+ metadata parsing and writing"
repository = "https://github.com/quietvoid/hdr10plus_tool/tree/master/hdr10plus"

[dependencies]
bitvec_helpers = { version = "3.1.4", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.2", optional = true }
bitvec_helpers = { version = "3.1.5", default-features = false, features = ["bitstream-io"] }
hevc_parser = { version = "0.6.3", optional = true }

anyhow = "1.0.86"
serde = { version = "1.0.203", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion hdr10plus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
## **Building**
### **Toolchain**

The minimum Rust version to use the **`hdr10plus`** crate is 1.60.0.
The minimum Rust version to use the **`hdr10plus`** crate is 1.79.0.

0 comments on commit c5966b8

Please sign in to comment.