Skip to content

Commit 7f8bcc0

Browse files
Bump the default group across 1 directory with 7 updates (#73)
* Bump the default group across 1 directory with 7 updates Bumps the default group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.93` | `1.0.95` | | [argh](https://github.com/google/argh) | `0.1.12` | `0.1.13` | | [ruby-marshal](https://github.com/nathaniel-daniel/ruby-marshal-rs) | ``fcfdf6a`` | ``452d70a`` | | [serde](https://github.com/serde-rs/serde) | `1.0.215` | `1.0.217` | | [serde_json](https://github.com/serde-rs/json) | `1.0.133` | `1.0.138` | | [nd-util](https://github.com/nathaniel-daniel/nd-util-rs) | ``d846f22`` | ``2d0010f`` | Updates `anyhow` from 1.0.93 to 1.0.95 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.93...1.0.95) Updates `argh` from 0.1.12 to 0.1.13 - [Release notes](https://github.com/google/argh/releases) - [Commits](google/argh@0.1.12...0.1.13) Updates `ruby-marshal` from `fcfdf6a` to `452d70a` - [Commits](nathaniel-daniel/ruby-marshal-rs@fcfdf6a...452d70a) Updates `serde` from 1.0.215 to 1.0.217 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.215...v1.0.217) Updates `serde_json` from 1.0.133 to 1.0.138 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.133...v1.0.138) Updates `ruby-marshal-derive` from `fcfdf6a` to `452d70a` - [Commits](nathaniel-daniel/ruby-marshal-rs@fcfdf6a...452d70a) Updates `nd-util` from `d846f22` to `2d0010f` - [Commits](nathaniel-daniel/nd-util-rs@d846f22...2d0010f) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default - dependency-name: argh dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default - dependency-name: ruby-marshal dependency-type: direct:production dependency-group: default - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: default - dependency-name: ruby-marshal-derive dependency-type: direct:production dependency-group: default - dependency-name: nd-util dependency-type: direct:production dependency-group: default ... Signed-off-by: dependabot[bot] <support@github.com> * Update deps * Fix deny --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nathaniel Daniel <nathaniel.daniel12@gmail.com>
1 parent 03f37be commit 7f8bcc0

File tree

12 files changed

+67
-54
lines changed

12 files changed

+67
-54
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ updates:
99
patterns:
1010
- "*"
1111
open-pull-requests-limit: 10
12+
- package-ecosystem: github-actions
13+
directory: "/"
14+
schedule:
15+
interval: monthly
16+
groups:
17+
default:
18+
patterns:
19+
- "*"

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@v4
4040

4141
- name: Deny
42-
uses: EmbarkStudios/cargo-deny-action@v1
42+
uses: EmbarkStudios/cargo-deny-action@v2
4343

4444
build:
4545
name: Build

Cargo.lock

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

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ignore = []
1212
[licenses]
1313
confidence-threshold = 0.93
1414
private = { ignore = true }
15-
allow = [ "Apache-2.0", "MIT", "Zlib", "BSD-3-Clause", "Unicode-DFS-2016" ]
15+
allow = [ "Apache-2.0", "MIT", "Zlib", "BSD-3-Clause", "Unicode-DFS-2016", "Unicode-3.0" ]
1616

1717
[[licenses.clarify]]
1818
name = "ring"

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

rpgm-common-types/src/color.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub struct Color {
3737
pub alpha: f64,
3838
}
3939

40-
impl<'a> FromValue<'a> for Color {
40+
impl FromValue<'_> for Color {
4141
fn from_value(ctx: &FromValueContext, value: &Value) -> Result<Self, FromValueError> {
4242
let user_defined: &UserDefinedValue = FromValue::from_value(ctx, value)?;
4343
let name = user_defined.name();

rpgm-common-types/src/tone.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub struct Tone {
3838
pub gray: f64,
3939
}
4040

41-
impl<'a> FromValue<'a> for Tone {
41+
impl FromValue<'_> for Tone {
4242
fn from_value(ctx: &FromValueContext, value: &Value) -> Result<Self, FromValueError> {
4343
let user_defined: &UserDefinedValue = FromValue::from_value(ctx, value)?;
4444
let name = user_defined.name();

rpgm-tool/Cargo.toml

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

77
[dependencies]
8-
anyhow = "1.0.93"
9-
argh = "0.1.12"
8+
anyhow = "1.0.95"
9+
argh = "0.1.13"
1010
camino = "1.1.9"
1111
memchr = "2.7.4"
1212
nd-util = { git = "https://github.com/nathaniel-daniel/nd-util-rs", version = "0.0.0" }
1313
rgssad = { git = "https://github.com/nathaniel-daniel/rgssad-rs", version = "0.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.215"
18-
serde_json = "1.0.133"
17+
serde = "1.0.217"
18+
serde_json = "1.0.138"
1919
walkdir = "2.5.0"
2020
rpgm-common-types = { version = "0.0.0", path = "../rpgm-common-types" }

rpgm-tool/src/util.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ pub fn is_map_file_name(file_name: &str, expected_extension: &str) -> bool {
4242
}
4343
})
4444
.and_then(|file_name| file_name.strip_prefix("Map"))
45-
.map_or(false, |map_n| {
46-
!map_n.is_empty() && map_n.chars().all(|c| c.is_ascii_digit())
47-
})
45+
.is_some_and(|map_n| !map_n.is_empty() && map_n.chars().all(|c| c.is_ascii_digit()))
4846
}
4947

5048
/// Percent-escape a file name.

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.215", features = [ "derive" ] }
11+
serde = { version = "1.0.217", features = [ "derive" ] }

rpgmxp-project/Cargo.toml

Lines changed: 4 additions & 4 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.93"
9-
argh = "0.1.12"
8+
anyhow = "1.0.95"
9+
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.215", features = ["derive"] }
13-
serde_json = "1.0.133"
12+
serde = { version = "1.0.217", features = ["derive"] }
13+
serde_json = "1.0.138"

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.215", features = [ "derive" ] }
11+
serde = { version = "1.0.217", features = [ "derive" ] }

0 commit comments

Comments
 (0)