moonfire-nvr/ffmpeg/Cargo.toml
Scott Lamb 699ec87968 upgrade to 2018 Rust edition
This is mostly just "cargo fix --edition" + Cargo.toml changes.
There's one fix for upgrading to NLL in db/writer.rs:
Writer::previously_opened wouldn't build with NLL because of a
double-borrow the previous borrow checker somehow didn't catch.
Restructure to avoid it.

I'll put elective NLL changes in a following commit.
2018-12-28 14:59:06 -06:00

19 lines
324 B
TOML

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