Skip to content

Commit 6cf1aab

Browse files
Update deps (#76)
* Update deps * Upgrade deps
1 parent 678e595 commit 6cf1aab

File tree

7 files changed

+40
-40
lines changed

7 files changed

+40
-40
lines changed

Cargo.lock

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

rpgm-common-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 = { version = "1.0.35" }
8+
flate2 = { version = "1.1.0" }
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.217", features = [ "derive" ] }
11+
serde = { version = "1.0.219", features = [ "derive" ] }

rpgm-common-types/src/table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ impl<'a> FromValue<'a> for Table {
117117
let value_len = value.len();
118118
if i32::try_from(value_len)
119119
.ok()
120-
.map_or(true, |value_len| value_len != 2 * size)
120+
.is_none_or(|value_len| value_len != 2 * size)
121121
{
122122
return Err(FromValueError::new_other(
123123
TableFromValueError::ItemSizeMismatch {

rpgm-tool/Cargo.toml

Lines changed: 3 additions & 3 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-
anyhow = "1.0.95"
8+
anyhow = "1.0.97"
99
argh = "0.1.13"
1010
camino = "1.1.9"
1111
memchr = "2.7.4"
@@ -14,7 +14,7 @@ rgssad = { git = "https://github.com/nathaniel-daniel/rgssad-rs", version = "0.0
1414
rpgmxp-types = { version = "0.0.0", path = "../rpgmxp-types" }
1515
rpgmvx-types = { version = "0.0.0", path = "../rpgmvx-types" }
1616
ruby-marshal = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs", version = "0.0.0" }
17-
serde = "1.0.217"
18-
serde_json = "1.0.138"
17+
serde = "1.0.219"
18+
serde_json = "1.0.140"
1919
walkdir = "2.5.0"
2020
rpgm-common-types = { version = "0.0.0", path = "../rpgm-common-types" }

rpgmvx-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ license = "MIT OR Apache-2.0"
88
rpgm-common-types = { version = "0.0.0", path = "../rpgm-common-types" }
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.217", features = [ "derive" ] }
11+
serde = { version = "1.0.219", features = [ "derive" ] }

rpgmxp-project/Cargo.toml

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

77
[dependencies]
8-
anyhow = "1.0.95"
8+
anyhow = "1.0.97"
99
argh = "0.1.13"
1010
rpgmxp-types = { path = "../rpgmxp-types" }
1111
ruby-marshal = { git = "https://github.com/nathaniel-daniel/ruby-marshal-rs" }
12-
serde = { version = "1.0.217", features = ["derive"] }
13-
serde_json = "1.0.138"
12+
serde = { version = "1.0.219", features = ["derive"] }
13+
serde_json = "1.0.140"

rpgmxp-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ license = "MIT OR Apache-2.0"
88
rpgm-common-types = { version = "0.0.0", path = "../rpgm-common-types" }
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.217", features = [ "derive" ] }
11+
serde = { version = "1.0.219", features = [ "derive" ] }

0 commit comments

Comments
 (0)