mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-27 07:35:56 -05:00
ae502200c0
This stops using parking_lot entirely. Since Rust 1.62, the std implementations on Linux are direct futexes, not the boxed pthread mutexes they used to be. No real reason to use parking_lot anymore, so shed this dependency.
26 lines
423 B
TOML
26 lines
423 B
TOML
[package]
|
|
name = "moonfire-base"
|
|
version = "0.0.1"
|
|
authors = ["Scott Lamb <slamb@slamb.org>"]
|
|
readme = "../README.md"
|
|
edition = "2018"
|
|
license-file = "../../LICENSE.txt"
|
|
|
|
[features]
|
|
nightly = []
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
failure = "0.1.1"
|
|
futures = "0.3"
|
|
lazy_static = "1.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
nom = "7.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
slab = "0.4"
|
|
time = "0.1"
|