forked from CCExtractor/rusty_ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (29 loc) · 892 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "rusty_ffmpeg"
version = "0.9.5"
authors = ["ldm0 <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A library that provides Rust bindings for FFmpeg"
homepage = "https://github.com/CCExtractor/rusty_ffmpeg/"
documentation = "https://docs.rs/rusty_ffmpeg"
repository = "https://github.com/CCExtractor/rusty_ffmpeg/"
readme = "README.md"
keywords = ["ffmpeg", "ffi", "binding", "video", "audio"]
categories = ["external-ffi-bindings", "multimedia"]
exclude = [".github"]
build = "build.rs"
# Doc test of generated binding is non-sense https://github.com/rust-lang/cargo/issues/3720
[lib]
doctest = false
[dependencies]
libc = "0.2"
[build-dependencies]
bindgen = "0.60"
camino = "1.0.9"
once_cell = "1.12"
regex = "1.5"
[target.'cfg(not(windows))'.build-dependencies]
pkg-config = "0.3"
[target.'cfg(windows)'.build-dependencies]
vcpkg = "0.2"