Skip to content

Commit 26f29df

Browse files
committed
Add Cargo.lock
1 parent 5e103af commit 26f29df

File tree

4 files changed

+80
-10
lines changed

4 files changed

+80
-10
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,5 @@
22
# will have compiled files and executables
33
/target/
44

5-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
6-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
7-
Cargo.lock
8-
95
# These are backup files generated by rustfmt
106
**/*.rs.bk

Cargo.lock

Lines changed: 74 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hevc_parser"
3-
version = "0.6.9"
3+
version = "0.6.10"
44
authors = ["quietvoid"]
55
edition = "2024"
66
rust-version = "1.85.0"
@@ -10,12 +10,12 @@ repository = "https://github.com/quietvoid/hevc_parser"
1010

1111
[dependencies]
1212
nom = "8.0.0"
13-
bitvec_helpers = { version = "4.0.0", default-features = false, features = ["bitstream-io"] }
14-
anyhow = "1.0.98"
15-
regex = { version = "1.11.1", optional = true }
13+
bitvec_helpers = { version = "4.0.1", default-features = false, features = ["bitstream-io"] }
14+
anyhow = "1.0.100"
15+
regex-lite = { version = "0.1.8", optional = true }
1616

1717
# Matroska support
1818
matroska-demuxer = { version = "0.7.0", optional = true }
1919

2020
[features]
21-
hevc_io = ["dep:regex", "dep:matroska-demuxer"]
21+
hevc_io = ["dep:regex-lite", "dep:matroska-demuxer"]

src/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::{
44
};
55

66
use anyhow::{Result, bail, format_err};
7-
use regex::Regex;
7+
use regex_lite::Regex;
88

99
pub mod processor;
1010

0 commit comments

Comments
 (0)