From 02edbc67ac8112c9727044f8eedb62394e3affcf Mon Sep 17 00:00:00 2001 From: nbabcock Date: Tue, 14 Feb 2023 20:57:45 -0600 Subject: [PATCH] feat: publish v0.1 on Crates.io --- Cargo.toml | 9 ++++++++- README.md | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bac75d4..39db238 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,9 +2,16 @@ name = "ffmpeg-sidecar" version = "0.1.0" edition = "2021" +description = "Wrap a standalone FFmpeg binary in an intuitive Iterator interface." +authors = ["Nathan Babcock "] +categories = ["multimedia"] +keywords = ["ffmpeg", "video"] +repository = "https://github.com/nathanbabcock/ffmpeg-sidecar" +readme = "README.md" +license = "MIT" [lib] crate-type = ["lib"] [dependencies] -# zero dependencies! +# there are none! diff --git a/README.md b/README.md index 9dc008d..47b6931 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ cargo install ffmpeg-sidecar ### 3. Import and use -```rs +```rust use ffmpeg_sidecar::{FfmpegCommand, FfmpegChild, FfmpegEvent}; fn main() { @@ -110,4 +110,4 @@ fn main() { Inspired loosely by Node.js [`fluent-ffmpeg`](https://www.npmjs.com/package/fluent-ffmpeg), which does -something similar in Javascript +something similar in Javascript.