Skip to content

Commit

Permalink
fix: add argument parsing till mkvlang
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekmedia committed Aug 2, 2023
1 parent 337810d commit efdccc1
Show file tree
Hide file tree
Showing 5 changed files with 1,234 additions and 175 deletions.
68 changes: 49 additions & 19 deletions src/rust/Cargo.lock

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

11 changes: 7 additions & 4 deletions src/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@ log = "0.4.0"
env_logger = "0.8.4"
iconv = "0.1.1"
palette = "0.6.0"
rsmpeg = { version = "0.14.1", optional = true, features = ["link_system_ffmpeg"] }
tesseract-sys = { version = "0.5.14", optional = true, default-features = false}
leptonica-sys = { version = "0.4.3", optional = true, default-features = false}
rsmpeg = { version = "0.14.1", optional = true, features = [
"link_system_ffmpeg",
] }
tesseract-sys = { version = "0.5.14", optional = true, default-features = false }
leptonica-sys = { version = "0.4.3", optional = true, default-features = false }
clap = { version = "4.3.19", features = ["derive"] }
strum = "0.25"
strum_macros = "0.25"

[build-dependencies]
bindgen = "0.58.1"

[features]
hardsubx_ocr = ["rsmpeg", "tesseract-sys", "leptonica-sys"]

Loading

0 comments on commit efdccc1

Please sign in to comment.