Skip to content

Commit bd44f2d

Browse files
dependabot[bot]torokati44
authored andcommitted
build(deps): bump the cargo-minor group with 6 updates
Bumps the cargo-minor group with 6 updates: | Package | From | To | | --- | --- | --- | | [rfd](https://github.com/PolyMeilex/rfd) | `0.15.1` | `0.15.2` | | [syn](https://github.com/dtolnay/syn) | `2.0.93` | `2.0.95` | | [os_info](https://github.com/stanislav-tkach/os_info) | `3.9.1` | `3.9.2` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.11` | `0.12.12` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.14.0` | `3.15.0` | | [insta](https://github.com/mitsuhiko/insta) | `1.41.1` | `1.42.0` | Updates `rfd` from 0.15.1 to 0.15.2 - [Release notes](https://github.com/PolyMeilex/rfd/releases) - [Changelog](https://github.com/PolyMeilex/rfd/blob/master/CHANGELOG.md) - [Commits](PolyMeilex/rfd@0.15.1...0.15.2) Updates `syn` from 2.0.93 to 2.0.95 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@2.0.93...2.0.95) Updates `os_info` from 3.9.1 to 3.9.2 - [Release notes](https://github.com/stanislav-tkach/os_info/releases) - [Changelog](https://github.com/stanislav-tkach/os_info/blob/master/CHANGELOG.md) - [Commits](stanislav-tkach/os_info@v3.9.1...v3.9.2) Updates `reqwest` from 0.12.11 to 0.12.12 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.12.11...v0.12.12) Updates `tempfile` from 3.14.0 to 3.15.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.14.0...v3.15.0) Updates `insta` from 1.41.1 to 1.42.0 - [Release notes](https://github.com/mitsuhiko/insta/releases) - [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md) - [Commits](mitsuhiko/insta@1.41.1...1.42.0) --- updated-dependencies: - dependency-name: rfd dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: os_info dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: insta dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 723bb30 commit bd44f2d

File tree

6 files changed

+25
-22
lines changed

6 files changed

+25
-22
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ wasm-bindgen = "=0.2.99"
7676
walkdir = "2.5.0"
7777
tokio = "1.42.0"
7878
# Switching from the `async-std` to the `tokio` runtime, which we depend on anyway.
79-
rfd = { version = "0.15.1", default-features = false, features = ["tokio", "xdg-portal"] }
79+
rfd = { version = "0.15.2", default-features = false, features = ["tokio", "xdg-portal"] }
8080

8181
[workspace.lints.rust]
8282
# Clippy nightly often adds new/buggy lints that we want to ignore.

core/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ proc-macro = true
1515

1616
[dependencies]
1717
quote = "1.0.38"
18-
syn = { version = "2.0.93", features = ["extra-traits", "full"] }
18+
syn = { version = "2.0.95", features = ["extra-traits", "full"] }

frontend-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async-channel = { workspace = true }
2626
slotmap = { workspace = true }
2727
async-io = "2.4.0"
2828
futures-lite = "2.5.0"
29-
reqwest = { version = "0.12.11", default-features = false, features = [
29+
reqwest = { version = "0.12.12", default-features = false, features = [
3030
"rustls-tls",
3131
"cookies",
3232
"charset",

render/naga-agal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ num-derive = { workspace = true }
1717
num-traits = { workspace = true }
1818

1919
[dev-dependencies]
20-
insta = "1.41.1"
20+
insta = "1.42.0"
2121
naga = { workspace = true, features = ["wgsl-out"] }

video/external/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ thiserror = { workspace = true }
1818

1919
# Needed for OpenH264:
2020
libloading = { version = "0.8.6", optional = true }
21-
reqwest = { version = "0.12.11", default-features = false, features = ["blocking"], optional = true }
21+
reqwest = { version = "0.12.12", default-features = false, features = ["blocking"], optional = true }
2222
hex = { version = "0.4.3", optional = true }
2323
bzip2 = { version = "0.5.0", features = ["static"], optional = true }
24-
tempfile = { version = "3.14.0", optional = true }
24+
tempfile = { version = "3.15.0", optional = true }
2525
sha2 = { version = "0.10.8", optional = true }
2626

2727
[features]

0 commit comments

Comments
 (0)