mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-02-24 11:59:15 -05:00
update a few deps
cursive & rusqlite are more significant; I'll do those separately
This commit is contained in:
parent
6f0c8c19de
commit
428f5a3ba4
1187
Cargo.lock
generated
1187
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -39,7 +39,7 @@ memchr = "2.0.2"
|
|||||||
memmap = "0.7"
|
memmap = "0.7"
|
||||||
mylog = { git = "https://github.com/scottlamb/mylog" }
|
mylog = { git = "https://github.com/scottlamb/mylog" }
|
||||||
openssl = "0.10"
|
openssl = "0.10"
|
||||||
parking_lot = { version = "0.7", features = [] }
|
parking_lot = { version = "0.8", features = [] }
|
||||||
reffers = "0.5.1"
|
reffers = "0.5.1"
|
||||||
regex = "1.0"
|
regex = "1.0"
|
||||||
ring = "0.14.6"
|
ring = "0.14.6"
|
||||||
|
@ -15,5 +15,5 @@ path = "lib.rs"
|
|||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
parking_lot = { version = "0.7", features = [] }
|
parking_lot = { version = "0.8", features = [] }
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
|
@ -90,7 +90,7 @@ use http_serve;
|
|||||||
use log::{debug, error, trace, warn};
|
use log::{debug, error, trace, warn};
|
||||||
use memmap;
|
use memmap;
|
||||||
use openssl::hash;
|
use openssl::hash;
|
||||||
use parking_lot::{Once, ONCE_INIT};
|
use parking_lot::Once;
|
||||||
use reffers::ARefs;
|
use reffers::ARefs;
|
||||||
use crate::slices::{self, Slices};
|
use crate::slices::{self, Slices};
|
||||||
use smallvec::SmallVec;
|
use smallvec::SmallVec;
|
||||||
@ -372,7 +372,7 @@ impl Segment {
|
|||||||
Ok(Segment{
|
Ok(Segment{
|
||||||
s: recording::Segment::new(db, row, rel_range_90k).err_kind(ErrorKind::Unknown)?,
|
s: recording::Segment::new(db, row, rel_range_90k).err_kind(ErrorKind::Unknown)?,
|
||||||
index: UnsafeCell::new(Err(())),
|
index: UnsafeCell::new(Err(())),
|
||||||
index_once: ONCE_INIT,
|
index_once: Once::new(),
|
||||||
first_frame_num,
|
first_frame_num,
|
||||||
num_subtitle_samples: 0,
|
num_subtitle_samples: 0,
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user