forked from elizagamedev/vobsubocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 826 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "vobsubocr"
version = "0.1.1"
authors = ["Eliza Velasquez"]
edition = "2018"
description = "Converts DVD VOB subtitles to SRT subtitles with Tesseract OCR"
license = "GPL-3.0"
keywords = ["vobsub", "subtitles", "dvd", "ocr"]
categories = ["command-line-utilities", "multimedia", "multimedia::video"]
repository = "https://github.com/elizagamedev/vobsubocr/"
homepage = "https://github.com/elizagamedev/vobsubocr/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.2", features = ["cargo", "derive"] }
image = "0.24"
iter_fixed = "0.3.1"
leptess = "0.14.0"
log = "0.4.14"
rayon = "1.5.1"
scoped-tls-hkt = "0.1.2"
simple_logger = { version = "4.1.0", features = ["colors"] }
snafu = "0.7"
subparse = "0.7.0"
vobsub = "0.2.3"