From 62ee97236cc5d0713cca2c7276c8569c04b93ae5 Mon Sep 17 00:00:00 2001 From: 44r0n7 <44r0n7+gitea@pm.me> Date: Wed, 31 Dec 2025 23:03:13 -0500 Subject: [PATCH] Add package metadata --- vid-repair-core/Cargo.toml | 6 ++++++ vid-repair/Cargo.toml | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/vid-repair-core/Cargo.toml b/vid-repair-core/Cargo.toml index 0d2e48e..0658ed6 100644 --- a/vid-repair-core/Cargo.toml +++ b/vid-repair-core/Cargo.toml @@ -2,6 +2,12 @@ name = "vid-repair-core" version = "0.1.0" edition = "2021" +description = "Core library for Vid-Repair: scan, rule evaluation, and fix planning." +license = "MIT" +repository = "https://git.44r0n.cc/44r0n7/vid-repair.git" +homepage = "https://git.44r0n.cc/44r0n7/vid-repair" +keywords = ["video", "ffmpeg", "repair", "media"] +categories = ["multimedia"] [dependencies] anyhow = { workspace = true } diff --git a/vid-repair/Cargo.toml b/vid-repair/Cargo.toml index f74f4bd..2d35925 100644 --- a/vid-repair/Cargo.toml +++ b/vid-repair/Cargo.toml @@ -2,6 +2,13 @@ name = "vid-repair" version = "0.1.0" edition = "2021" +description = "Scan and repair video files using ffmpeg/ffprobe with safe, explainable fixes." +license = "MIT" +readme = "../README.md" +repository = "https://git.44r0n.cc/44r0n7/vid-repair.git" +homepage = "https://git.44r0n.cc/44r0n7/vid-repair" +keywords = ["video", "ffmpeg", "repair", "media", "cli"] +categories = ["command-line-utilities", "multimedia"] [dependencies] anyhow = { workspace = true }