Skip to content

Commit 22833b0

Browse files
Update Deps (#66)
* Update depandabot * Upgrade deps
1 parent d5623ad commit 22833b0

File tree

6 files changed

+76
-65
lines changed

6 files changed

+76
-65
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ updates:
44
directory: "/"
55
schedule:
66
interval: monthly
7+
groups:
8+
default:
9+
patterns:
10+
- "*"
711
open-pull-requests-limit: 10

Cargo.lock

Lines changed: 63 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpgmxp-project/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ anyhow = "1.0.86"
99
argh = "0.1.12"
1010
rpgmxp-types = { path = "../rpgmxp-types" }
1111
ruby-marshal = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs" }
12-
serde = { version = "1.0.204", features = ["derive"] }
13-
serde_json = "1.0.120"
12+
serde = { version = "1.0.209", features = ["derive"] }
13+
serde_json = "1.0.127"

rpgmxp-tool/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ license = "MIT OR Apache-2.0"
77
[dependencies]
88
anyhow = "1.0.86"
99
argh = "0.1.12"
10-
camino = "1.1.7"
10+
camino = "1.1.9"
1111
nd-util = { git = "https://github.com/nathaniel-daniel/nd-util-rs", version = "0.0.0" }
1212
rgssad = { git = "https://github.com/nathaniel-daniel/rgssad-rs", version = "0.0.0" }
1313
rpgmxp-types = { version = "0.0.0", path = "../rpgmxp-types" }
1414
ruby-marshal = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs", version = "0.0.0" }
15-
serde = "1.0.204"
16-
serde_json = "1.0.120"
17-
walkdir = "2.4.0"
15+
serde = "1.0.209"
16+
serde_json = "1.0.127"
17+
walkdir = "2.5.0"

rpgmxp-tool/src/commands/unpack/file_entry_iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl FileEntryIter {
108108
let file = File::open(entry.path())?;
109109

110110
let entry_path = entry.into_path();
111-
let relative_path = entry_path.strip_prefix(&input_path)?;
111+
let relative_path = entry_path.strip_prefix(input_path)?;
112112
let relative_path = relative_path
113113
.to_str()
114114
.context("relative path is not utf8")?;

rpgmxp-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "MIT OR Apache-2.0"
66

77
[dependencies]
8-
flate2 = "1.0.28"
8+
flate2 = "1.0.33"
99
ruby-marshal = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs" }
1010
ruby-marshal-derive = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs" }
11-
serde = { version = "1.0.204", features = [ "derive" ] }
11+
serde = { version = "1.0.209", features = [ "derive" ] }

0 commit comments

Comments
 (0)