videoforge 0.1.0

A constrained, typed Rust wrapper for archiving public YouTube videos with yt-dlp
Documentation
[package]
name = "videoforge"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["Trevor Knott (Knott Dynamics)"]
license = "MIT"
description = "A constrained, typed Rust wrapper for archiving public YouTube videos with yt-dlp"
repository = "https://github.com/Tknott95/VideoForge"
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"]
include = [
    "/src/**",
    "/Cargo.toml",
    "/Cargo.lock",
    "/README.md",
    "/AGENT_GUIDE.md",
    "/CHANGELOG.md",
    "/LICENSE",
]

[dependencies]
blake3 = "1.8.2"
fs2 = "0.4.3"
process-wrap = { version = "8.2.1", default-features = false, features = [
    "std",
    "process-group",
    "job-object",
    "creation-flags",
] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
tempfile = "3.20.0"
thiserror = "2.0.12"
url = "2.5.4"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]