1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-05-19 16:58:04 +00:00
This commit is contained in:
Alf 2023-02-01 21:25:27 -08:00
parent 9f10bd335e
commit c8cc6f25a8
2 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "mp4" name = "mp4"
version = "0.12.0" version = "0.13.0"
authors = ["Alf <alf.g.jr@gmail.com>"] authors = ["Alf <alf.g.jr@gmail.com>"]
edition = "2018" edition = "2018"
description = "MP4 reader and writer library in Rust." description = "MP4 reader and writer library in Rust."
@ -10,6 +10,7 @@ homepage = "https://github.com/alfg/mp4-rust"
repository = "https://github.com/alfg/mp4-rust" repository = "https://github.com/alfg/mp4-rust"
keywords = ["mp4", "iso-mp4", "isobmff", "video", "multimedia"] keywords = ["mp4", "iso-mp4", "isobmff", "video", "multimedia"]
license = "MIT" license = "MIT"
include = ["src", "Cargo.toml", "README", "LICENSE"]
[dependencies] [dependencies]
thiserror = "^1.0" thiserror = "^1.0"

View file

@ -58,9 +58,12 @@ fn main() -> Result<()> {
See [examples/](examples/) for more examples. See [examples/](examples/) for more examples.
#### Install #### Install
Add to your `Cargo.toml`: ```
cargo add mp4
```
or add to your `Cargo.toml`:
```toml ```toml
mp4 = "0.12.0" mp4 = "0.13.0"
``` ```
#### Documentation #### Documentation