update a few deps

cursive & rusqlite are more significant; I'll do those separately
This commit is contained in:
Scott Lamb 2019-05-31 15:08:49 -07:00
parent 6f0c8c19de
commit 428f5a3ba4
4 changed files with 640 additions and 555 deletions

1187
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -39,7 +39,7 @@ memchr = "2.0.2"
memmap = "0.7"
mylog = { git = "https://github.com/scottlamb/mylog" }
openssl = "0.10"
parking_lot = { version = "0.7", features = [] }
parking_lot = { version = "0.8", features = [] }
reffers = "0.5.1"
regex = "1.0"
ring = "0.14.6"

View File

@ -15,5 +15,5 @@ path = "lib.rs"
failure = "0.1.1"
libc = "0.2"
log = "0.4"
parking_lot = { version = "0.7", features = [] }
parking_lot = { version = "0.8", features = [] }
time = "0.1"

View File

@ -90,7 +90,7 @@ use http_serve;
use log::{debug, error, trace, warn};
use memmap;
use openssl::hash;
use parking_lot::{Once, ONCE_INIT};
use parking_lot::Once;
use reffers::ARefs;
use crate::slices::{self, Slices};
use smallvec::SmallVec;
@ -372,7 +372,7 @@ impl Segment {
Ok(Segment{
s: recording::Segment::new(db, row, rel_range_90k).err_kind(ErrorKind::Unknown)?,
index: UnsafeCell::new(Err(())),
index_once: ONCE_INIT,
index_once: Once::new(),
first_frame_num,
num_subtitle_samples: 0,
})