mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-26 23:25:55 -05:00
9d70d68710
I did a full `cargo upgrade` and fixed what it broke: * a couple things for the latest protobuf 3.0 alphas (note alphas don't promise API stability) * new minimum supported Rust version This should have some other nice effects: parking_lot now uses inline assembler, tokio has gotten faster, etc.
27 lines
446 B
TOML
27 lines
446 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"
|
|
parking_lot = "0.12.0"
|
|
nom = "7.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
slab = "0.4"
|
|
time = "0.1"
|