Files
spacedrive/crates/ffmpeg/Cargo.toml
jake 5d3a156747 SPDX license and workspace inheritence for re-used metadata (#833)
use workspace inheritence for license, edition and repo URL
2023-05-20 01:52:55 +00:00

24 lines
655 B
TOML

[package]
name = "sd-ffmpeg"
version = "0.1.0"
authors = ["Ericson Soares <ericson.ds999@gmail.com>"]
readme = "README.md"
description = "A simple library to generate video thumbnails using ffmpeg with the webp format"
rust-version = "1.64.0"
license.workspace = true
repository.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ffmpeg-sys-next = "6.0.0"
thiserror = "1.0.37"
webp = "0.2.2"
tokio = { workspace = true, features = ["fs", "rt"] }
[dev-dependencies]
tempfile = "3.3.0"
tokio = { workspace = true, features = ["fs", "rt", "macros"] }