-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.59 KB
/
Copy pathCargo.toml
File metadata and controls
53 lines (46 loc) · 1.59 KB
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
47
48
49
50
51
52
53
[package]
name = "easy-media-cli"
version = "0.3.4"
edition = "2024"
license = "MIT"
readme = "README.md"
repository = "https://github.com/codenoobforreal/easy-media-cli"
description = "A lightweight FFmpeg-powered CLI for batch video processing (scene detection thumbnails + opinionated SVT-AV1 encoding)"
categories = ["command-line-utilities", "multimedia"]
keywords = ["cli", "ffmpeg", "batch-processing", "video", "thumbnail", "scene-detection", "encoding", "svt-av1"]
[dependencies]
anyhow = { version = "1" }
clap = { version = "4", default-features = false, features = ["derive", "std", "help", "usage", "suggestions"] }
crossterm = { version = "0.29.0", default-features = false, features = ["windows", "events"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
ctrlc = { version = "3" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
thiserror = { version = "2" }
[dev-dependencies]
insta = { version = "1", features = ["filters"] }
tempfile = { version = "3" }
criterion = { version = "0.8" }
[[bench]]
name = "read_progress"
harness = false
[[bench]]
name = "collect_videos"
harness = false
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[profile.release]
strip = true
lto = true
panic = "abort"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
match_wildcard_for_single_variants = "warn"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
doc_markdown = "allow"
return_self_not_must_use = "allow"