upgrade some other deps

This commit is contained in:
Scott Lamb 2021-01-27 12:11:36 -08:00
parent b114493729
commit 4e67af9909
4 changed files with 261 additions and 325 deletions

576
server/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@ blake3 = "0.3.7"
bytes = "1" bytes = "1"
byteorder = "1.0" byteorder = "1.0"
cstr = "0.2.5" cstr = "0.2.5"
cursive = "0.15.0" cursive = "0.16.3"
db = { package = "moonfire-db", path = "db" } db = { package = "moonfire-db", path = "db" }
failure = "0.1.1" failure = "0.1.1"
ffmpeg = { package = "moonfire-ffmpeg", git = "https://github.com/scottlamb/moonfire-ffmpeg" } ffmpeg = { package = "moonfire-ffmpeg", git = "https://github.com/scottlamb/moonfire-ffmpeg" }

View File

@ -29,7 +29,7 @@ mylog = { git = "https://github.com/scottlamb/mylog" }
nix = "0.19.0" nix = "0.19.0"
odds = { version = "0.4.0", features = ["std-vec"] } odds = { version = "0.4.0", features = ["std-vec"] }
parking_lot = { version = "0.11.1", features = [] } parking_lot = { version = "0.11.1", features = [] }
prettydiff = "0.3.1" prettydiff = "0.4.0"
protobuf = { git = "https://github.com/stepancheg/rust-protobuf" } protobuf = { git = "https://github.com/stepancheg/rust-protobuf" }
ring = "0.16.2" ring = "0.16.2"
rusqlite = "0.24.1" rusqlite = "0.24.1"
@ -37,7 +37,7 @@ smallvec = "1.0"
tempdir = "0.3" tempdir = "0.3"
time = "0.1" time = "0.1"
uuid = { version = "0.8", features = ["std", "v4"] } uuid = { version = "0.8", features = ["std", "v4"] }
itertools = "0.9.0" itertools = "0.10.0"
[build-dependencies] [build-dependencies]
protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" } protobuf-codegen-pure = { git = "https://github.com/stepancheg/rust-protobuf" }

View File

@ -34,7 +34,7 @@
//! configuration will likely be almost entirely done through a web-based UI. //! configuration will likely be almost entirely done through a web-based UI.
use base::clock; use base::clock;
use cursive::{Cursive, CursiveExt}; use cursive::Cursive;
use cursive::views; use cursive::views;
use db; use db;
use failure::Error; use failure::Error;
@ -59,7 +59,7 @@ pub fn run(args: &Args) -> Result<(), Error> {
let clocks = clock::RealClocks {}; let clocks = clock::RealClocks {};
let db = Arc::new(db::Database::new(clocks, conn, true)?); let db = Arc::new(db::Database::new(clocks, conn, true)?);
let mut siv = Cursive::ncurses()?; let mut siv = cursive::default();
//siv.add_global_callback('q', |s| s.quit()); //siv.add_global_callback('q', |s| s.quit());
siv.add_layer(views::Dialog::around( siv.add_layer(views::Dialog::around(