Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Feb 26, 2024
1 parent 1a1a21b commit 328f523
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 47 deletions.
79 changes: 54 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
clap = { version = "4.5.1", features = ["derive", "env"] }
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-log = "0.1.3"
tracing-log = "0.2.0"
color-eyre = "0.6.2"
walkdir = "2.3.2"
tempfile = "3.4.0"
Expand All @@ -32,7 +32,7 @@ clap_complete = "4.1.5"
cmd_lib = "1.3.0"
tokio = { version = "1.28.2", features = ["full"] }
async-trait = "0.1.67"
nix = { version = "0.26.2", features = ["signal"], default-features = false }
nix = { version = "0.28.0", features = ["signal"], default-features = false }
git2 = "0.18.2"
chrono = "0.4.24"
ignore = "0.4.18"
Expand Down
2 changes: 1 addition & 1 deletion anda-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ once_cell = { version = "1.16", default-features = false, features = ["std"] }
parking_lot = "0.12.1"

[dev-dependencies]
env_logger = "0.10.0"
env_logger = "0.11.2"
4 changes: 2 additions & 2 deletions andax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ description = "Andaman scripting runtime"
serde_json = "~1"
regex = "~1"
lazy_static = "~1"
rhai = { version = "=1.16", features = ["serde", "internals"] }
rhai = { version = "1.17.1", features = ["serde", "internals"] }
ureq = { version = "~2", features = ["json"] }
tracing = "0.1.37"
color-eyre = "0.6.2"
smartstring = "1.0.1"
tempfile = "3.4.0"
anda-config = { version = "0.1.6", path = "../anda-config" }
rhai-fs = "0.1.2"
rhai-url = "0.0.2"
rhai-url = "0.0.5"
hcl-rs = "0.15.0"
directories = "5.0.1"
chrono = "0.4.31"
4 changes: 2 additions & 2 deletions andax/src/fns/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
//! which implements procedures from building RPMs
//! see `anda::rpm_spec.rs`
use rhai::plugin::{
export_module, mem, Dynamic, FnAccess, FnNamespace, ImmutableString, Module, NativeCallContext,
PluginFunction, RhaiResult, TypeId,
export_module, mem, Dynamic, FuncRegistration, ImmutableString, Module, NativeCallContext,
PluginFunc, RhaiResult, TypeId,
};

// 正にこうです。 :3
Expand Down
6 changes: 3 additions & 3 deletions andax/src/fns/cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ use crate::error::AndaxRes;
use anda_config::load_from_file;
use rhai::{
plugin::{
export_module, mem, Dynamic, FnAccess, FnNamespace, ImmutableString, Module,
NativeCallContext, PluginFunction, RhaiResult, TypeId,
export_module, mem, Dynamic, ImmutableString, Module, NativeCallContext, PluginFunc,
RhaiResult, TypeId,
},
EvalAltResult,
EvalAltResult, FuncRegistration,
};
use std::path::PathBuf;

Expand Down
6 changes: 3 additions & 3 deletions andax/src/fns/io.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use crate::error::AndaxRes;
use rhai::{
plugin::{
export_module, mem, Dynamic, FnAccess, FnNamespace, ImmutableString, Module,
NativeCallContext, PluginFunction, RhaiResult, TypeId,
export_module, mem, Dynamic, FnNamespace, ImmutableString, Module, NativeCallContext,
PluginFunc, RhaiResult, TypeId,
},
EvalAltResult,
EvalAltResult, FuncRegistration,
};
use std::io::Write;
use std::process::Command;
Expand Down
6 changes: 3 additions & 3 deletions andax/src/fns/kokoro.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ use crate::run::rf;
use regex::Regex;
use rhai::{
plugin::{
export_module, mem, FnAccess, FnNamespace, ImmutableString, Module, NativeCallContext,
PluginFunction, RhaiResult, TypeId,
export_module, mem, FnNamespace, ImmutableString, Module, NativeCallContext, PluginFunc,
RhaiResult, TypeId,
},
Dynamic, EvalAltResult as RhaiE,
Dynamic, EvalAltResult as RhaiE, FuncRegistration,
};
type Res<T = ()> = Result<T, Box<RhaiE>>;

Expand Down
6 changes: 3 additions & 3 deletions andax/src/fns/tenshi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ use crate::error::AndaxRes;

use rhai::{
plugin::{
export_module, mem, FnAccess, FnNamespace, ImmutableString, Module, NativeCallContext,
PluginFunction, RhaiResult, TypeId,
export_module, mem, FnNamespace, ImmutableString, Module, NativeCallContext, PluginFunc,
RhaiResult, TypeId,
},
Dynamic, EvalAltResult as RhaiE,
Dynamic, EvalAltResult as RhaiE, FuncRegistration,
};
type Res<T = ()> = Result<T, Box<RhaiE>>;

Expand Down
6 changes: 3 additions & 3 deletions andax/src/fns/tsunagu.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use crate::{error::AndaxRes, run::rf};
use rhai::{
plugin::{
export_module, mem, Dynamic, EvalAltResult, FnAccess, FnNamespace, ImmutableString, Module,
NativeCallContext, PluginFunction, RhaiResult, TypeId,
export_module, mem, Dynamic, EvalAltResult, FnNamespace, ImmutableString, Module,
NativeCallContext, PluginFunc, RhaiResult, TypeId,
},
CustomType,
CustomType, FuncRegistration,
};
use serde_json::Value;
use std::env::VarError;
Expand Down

0 comments on commit 328f523

Please sign in to comment.