forked from larksuite/rsmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 908 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
[package]
name = "rsmpeg"
version = "0.14.1+ffmpeg.6.0"
authors = ["liudingming <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A Rust crate that exposes FFmpeg's power as much as possible."
keywords = ["ffmpeg", "ffi", "binding", "audio", "video"]
homepage = "https://github.com/larksuite/rsmpeg"
documentation = "https://docs.rs/rsmpeg"
repository = "https://github.com/larksuite/rsmpeg"
readme = "README.md"
exclude = ["tests/*", "examples/*", "utils/*"]
rust-version = "1.64.0"
[dependencies]
rusty_ffmpeg = "0.13.1"
libc = "0.2"
paste = "1.0"
thiserror = "1.0"
[dev-dependencies]
anyhow = "1.0.57"
cstr = "0.2.11"
once_cell = "1.12.0"
tempdir = "0.3.7"
[features]
# FFmpeg 5.* support
ffmpeg5 = ["rusty_ffmpeg/ffmpeg5"]
# FFmpeg 6.* support
ffmpeg6 = ["rusty_ffmpeg/ffmpeg6"]
# linking system ffmpeg as fallback.
link_system_ffmpeg = ["rusty_ffmpeg/link_system_ffmpeg"]