25 lines
661 B
TOML
25 lines
661 B
TOML
[package]
|
|
name = "video_probe"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
description = "Extract video metadata using ffprobe"
|
|
license = "MIT"
|
|
repository = "https://gitea.example.com/yourname/video_probe"
|
|
keywords = ["video", "metadata", "ffprobe", "ffmpeg"]
|
|
categories = ["command-line-utilities", "multimedia"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|
|
|
|
[[bin]]
|
|
name = "video_probe"
|
|
path = "src/main.rs" |