-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 868 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 868 Bytes
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
[package]
name = "extract-frames"
version = "0.2.6"
edition = "2024"
description = "CLI tool for extracting frames from videos"
authors = [
"Yehor Smoliakov <egorsmkv@gmail.com>",
]
keywords = ["ffmpeg", "video"]
categories = ["command-line-utilities"]
repository = "https://github.com/RustedBytes/extract-frames"
license = "MIT"
readme = "README.md"
[dependencies]
anyhow = "1.0.100"
clap = { version = "4.5.54", features = ["derive"] }
glob = "0.3.3"
ffmpeg-next = { version = "^7.1", features = ["static", "build"] }
image = { version = "0.25", features = ["jpeg"] }
log = "0.4.29"
ndarray = "0.17.1"
num-traits = "0.2.19"
rayon = "1.11.0"
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
video-rs = { version = "0.10.5", features = ["ndarray"] }
[dev-dependencies]
tempfile = "3.25.0"
[profile.dev]
debug = false
[profile.release]
debug = false
strip = true