mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-27 15:45:55 -05:00
e8a00d4639
I'm getting deprecation warnings for std::sync::ONCE_INIT, and I'm not sure when std::sync::Once::new() became a const fn. Just as easy to switch to parking_lot.
20 lines
373 B
TOML
20 lines
373 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"] }
|
|
parking_lot = { version = "0.9", features = [] }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
pkg-config = "0.3"
|