-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.29 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "subtile"
version = "0.1.8"
edition = "2021"
description = "A crate of utils to operate traitements on subtitles"
repository = "https://github.com/gwen-lg/subtile"
authors = ["Eric Kidd <[email protected]>", "Gwen Lg <[email protected]>"]
keywords = ["subtitle", "library", "parse", "write", "vobsub"]
categories = [
"command-line-utilities",
"encoding",
"multimedia::encoding",
"parser-implementations",
]
license = "LGPL-3.0-or-later"
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.clippy]
cargo = { priority = -1, level = "warn" }
complexity = { priority = -1, level = "deny" }
correctness = { priority = -1, level = "deny" }
# nursery = { priority = -1, level = "deny" }
# pedantic = { priority = -1, level = "warn" }
perf = { priority = -1, level = "deny" }
# restriction = { priority = -1, level = "deny" }
style = { priority = -1, level = "deny" }
# suspicious = { priority = -1, level = "deny" }
[dependencies]
cast = "0.3"
image = { version = "0.25", default-features = false, features = ["png"] }
log = "0.4"
nom = "7.1"
once_cell = "1.19"
profiling = "1.0"
regex = "1.10"
safemem = "0.3"
thiserror = "1.0"
[dev-dependencies]
env_logger = "0.11"
glob = "0.3"