ffmpeg-the-third/Cargo.toml

37 lines
981 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-06-08 15:53:46 +02:00
version = "0.1.1"
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
2015-06-19 01:04:49 +02:00
static = ["ffmpeg-sys/static"]
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
2015-08-03 18:52:30 +02:00
[dependencies.image]
version = "*"
optional = true
2015-05-15 21:28:03 +02:00
[dependencies.ffmpeg-sys]
2015-06-19 01:04:49 +02:00
version = "2.7.0"
2015-06-08 15:53:46 +02:00
2015-05-15 21:28:03 +02:00
default-features = false