ffmpeg-the-third/Cargo.toml

31 lines
883 B
TOML
Raw Normal View History

2015-05-07 04:28:34 +02:00
[package]
2015-05-29 19:30:57 +02:00
name = "ffmpeg"
2015-05-07 04:28:34 +02:00
version = "0.1.0"
2015-05-29 19:30:57 +02:00
2015-05-07 04:28:34 +02:00
authors = ["meh. <meh@schizofreni.co>"]
license = "WTFPL"
2015-05-29 19:30:57 +02:00
description = "Safe FFmpeg wrapper"
repository = "https://github.com/meh/rust-ffmpeg"
keywords = ["audio", "video"]
2015-05-15 21:28:03 +02:00
[features]
default = ["codec", "device", "filter", "format", "resampling", "postprocessing", "software-resampling", "software-scaling"]
2015-05-15 21:28:03 +02:00
codec = ["ffmpeg-sys/avcodec"]
device = ["ffmpeg-sys/avdevice", "format"]
filter = ["ffmpeg-sys/avfilter"]
format = ["ffmpeg-sys/avformat", "codec"]
resampling = ["ffmpeg-sys/avresample"]
postprocessing = ["ffmpeg-sys/postproc"]
software-resampling = ["ffmpeg-sys/swresample"]
software-scaling = ["ffmpeg-sys/swscale", "codec"]
2015-05-15 21:28:03 +02:00
2015-05-07 04:28:34 +02:00
[dependencies]
2015-05-29 19:30:57 +02:00
libc = "0.1"
2015-05-07 04:28:34 +02:00
bitflags = "0.1"
2015-05-15 21:28:03 +02:00
[dependencies.ffmpeg-sys]
version = "2.6.2"
default-features = false