moonfire-nvr/ffmpeg/Cargo.toml
Scott Lamb 2c026e1b6b minor cleanups to ffmpeg build setup
* the "lib: {}" print didn't do anything. It turns out that the pkg-config
  crate emits the necessary metadata for linking automatically. I had the
  wrong format and didn't notice because something else did it correctly.

* gcc::Config is deprecated; the new name is Build.

* and the crate is now called cc, version 1.0.

Stuff found while looking at #11. Still haven't figured that issue out.
2017-10-23 21:07:07 -07:00

18 lines
307 B
TOML

[package]
name = "moonfire-ffmpeg"
version = "0.0.1"
authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md"
#links = "ffmpeg"
[lib]
path = "lib.rs"
[dependencies]
libc = "0.2"
log = { version = "0.3", features = ["release_max_level_info"] }
[build-dependencies]
cc = "1.0"
pkg-config = "0.3"