bump dependencies

This commit is contained in:
LordMZTE 2022-03-21 21:48:26 +01:00
parent b1fc10a58c
commit b14a7a50fd
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
5 changed files with 14 additions and 15 deletions

View file

@ -6,12 +6,12 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam-channel = "0.5.2"
crossbeam-channel = "0.5.4"
dirs = "4.0.0"
libupgr = { path = "../libupgr" }
miette = "3.3.0"
mlua = { version = "0.7.3", features = ["luajit"] }
relm4 = { version = "0.4.2", features = ["macros"] }
miette = "4.2.1"
mlua = { version = "0.7.4", features = ["luajit"] }
relm4 = { version = "0.4.3", features = ["macros"] }
sled = "0.34.7"
vte4 = "0.1.0"

View file

@ -2,7 +2,7 @@ use std::{fs, rc::Rc, thread};
use crossbeam_channel::{bounded, Sender};
use libupgr::config::{Config, Step};
use miette::{miette, Context, IntoDiagnostic};
use miette::{miette, WrapErr, IntoDiagnostic};
use mlua::Lua;
pub fn start() -> miette::Result<LuaActorHandle> {
@ -92,7 +92,7 @@ impl LuaActor {
let lua = Box::leak(Box::new(lua));
lua.globals()
.set("upgr", libupgr::luautil::get_obj(&lua, Rc::new(db))?)
.set("upgr", libupgr::luautil::get_obj(lua, Rc::new(db))?)
.into_diagnostic()?;
let config = libupgr::config::run_config(

View file

@ -6,10 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
miette = { version = "3.2.0" }
mlua = { version = "0.7.3", features = ["luajit", "serialize"] }
serde = { version = "1.0.130", features = ["derive"] }
miette = "4.2.1"
mlua = { version = "0.7.4", features = ["luajit", "serialize"] }
serde = { version = "1.0.136", features = ["derive"] }
sled = "0.34.7"
thiserror = "1.0.30"
walkdir = "2.3.2"
xxhash-rust = { version = "0.8.2", features = ["xxh3"] }
xxhash-rust = { version = "0.8.4", features = ["xxh3"] }

View file

@ -39,7 +39,6 @@ impl ToString for CfgCommand {
}
#[derive(Debug, Error, Diagnostic)]
#[diagnostic(code)]
pub enum IntoCommandError {
#[error("Command has empty args!")]
EmptyArgs,

View file

@ -6,12 +6,12 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.0.0-beta.5", features = ["derive"] }
clap = { version = "3.1.6", features = ["derive"] }
dirs = "4.0.0"
libupgr = { path = "../libupgr" }
miette = { version = "3.2.0", features = ["fancy"] }
mlua = { version = "0.7.3", features = ["luajit", "serialize"] }
owo-colors = "3.1.0"
miette = { version = "4.2.1", features = ["fancy"] }
mlua = { version = "0.7.4", features = ["luajit", "serialize"] }
owo-colors = "3.3.0"
sled = "0.34.7"
[features]