Skip to content

Commit

Permalink
feat: publish v0.1 on Crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbabcock committed Feb 15, 2023
1 parent ea02a3a commit 02edbc6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
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!
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cargo install ffmpeg-sidecar

### 3. Import and use

```rs
```rust
use ffmpeg_sidecar::{FfmpegCommand, FfmpegChild, FfmpegEvent};

fn main() {
Expand Down Expand Up @@ -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.

0 comments on commit 02edbc6

Please sign in to comment.