[package]
edition = "2024"
rust-version = "1.85"
name = "videoforge"
version = "0.1.0"
authors = ["Trevor Knott (Knott Dynamics)"]
build = false
include = [
"/src/**",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/AGENT_GUIDE.md",
"/CHANGELOG.md",
"/LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A constrained, typed Rust wrapper for archiving public YouTube videos with yt-dlp"
homepage = "https://github.com/Tknott95/VideoForge"
documentation = "https://docs.rs/videoforge"
readme = "README.md"
keywords = [
"youtube",
"video",
"archive",
"yt-dlp",
"download",
]
categories = [
"api-bindings",
"multimedia::video",
"filesystem",
]
license = "MIT"
repository = "https://github.com/Tknott95/VideoForge"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "videoforge"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.8.2"
[dependencies.fs2]
version = "0.4.3"
[dependencies.process-wrap]
version = "8.2.1"
features = [
"std",
"process-group",
"job-object",
"creation-flags",
]
default-features = false
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.141"
[dependencies.tempfile]
version = "3.20.0"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.url]
version = "2.5.4"