mirror of
https://github.com/servo/servo.git
synced 2025-09-18 19:08:22 +01:00
build(deps): bump async-process from 2.4.0 to 2.5.0 (#39359)
Bumps [async-process](https://github.com/smol-rs/async-process) from 2.4.0 to 2.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/smol-rs/async-process/releases">async-process's releases</a>.</em></p> <blockquote> <h2>v2.5.0</h2> <ul> <li>Bump MSRV to 1.71. (<a href="https://redirect.github.com/smol-rs/async-process/issues/106">#106</a>)</li> <li>Add <code>Command::get_{args, envs, current_dir, program}</code> (<a href="https://redirect.github.com/smol-rs/async-process/issues/102">#102</a>)</li> <li>Update to <code>windows-sys</code> v0.61. (<a href="https://redirect.github.com/smol-rs/async-process/issues/104">#104</a>)</li> <li>Remove dependency on <code>async_lock</code> on Windows. (<a href="https://redirect.github.com/smol-rs/async-process/issues/103">#103</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/smol-rs/async-process/blob/master/CHANGELOG.md">async-process's changelog</a>.</em></p> <blockquote> <h1>Version 2.5.0</h1> <ul> <li>Bump MSRV to 1.71. (<a href="https://redirect.github.com/smol-rs/async-process/issues/106">#106</a>)</li> <li>Add <code>Command::get_{args, envs, current_dir, program}</code> (<a href="https://redirect.github.com/smol-rs/async-process/issues/102">#102</a>)</li> <li>Update to <code>windows-sys</code> v0.61. (<a href="https://redirect.github.com/smol-rs/async-process/issues/104">#104</a>)</li> <li>Remove dependency on <code>async_lock</code> on Windows. (<a href="https://redirect.github.com/smol-rs/async-process/issues/103">#103</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="81112a9118
"><code>81112a9</code></a> Release 2.5.0</li> <li><a href="459a055c9b
"><code>459a055</code></a> Bump MSRV to 1.71</li> <li><a href="ae48c514f4
"><code>ae48c51</code></a> ci: Use cargo-hack's --rust-version flag for msrv check</li> <li><a href="fc3b8bc060
"><code>fc3b8bc</code></a> Update windows-sys requirement from 0.60 to 0.61 (<a href="https://redirect.github.com/smol-rs/async-process/issues/104">#104</a>)</li> <li><a href="3a5419353f
"><code>3a54193</code></a> m: Use OnceLock instead of async-lock when useful</li> <li><a href="fead40f423
"><code>fead40f</code></a> feat: getters of <code>Command</code> (<a href="https://redirect.github.com/smol-rs/async-process/issues/102">#102</a>)</li> <li>See full diff in <a href="https://github.com/smol-rs/async-process/compare/v2.4.0...v2.5.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
95aa5632fa
commit
c0d6788598
1 changed files with 9 additions and 9 deletions
18
Cargo.lock
generated
18
Cargo.lock
generated
|
@ -378,7 +378,7 @@ dependencies = [
|
|||
"objc2-foundation 0.3.1",
|
||||
"parking_lot",
|
||||
"percent-encoding",
|
||||
"windows-sys 0.60.2",
|
||||
"windows-sys 0.52.0",
|
||||
"x11rb",
|
||||
]
|
||||
|
||||
|
@ -521,9 +521,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "async-process"
|
||||
version = "2.4.0"
|
||||
version = "2.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00"
|
||||
checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
|
||||
dependencies = [
|
||||
"async-channel",
|
||||
"async-io",
|
||||
|
@ -2151,7 +2151,7 @@ dependencies = [
|
|||
"libc",
|
||||
"option-ext",
|
||||
"redox_users",
|
||||
"windows-sys 0.61.0",
|
||||
"windows-sys 0.59.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -2556,7 +2556,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"windows-sys 0.61.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -4971,7 +4971,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
||||
dependencies = [
|
||||
"cfg-if",
|
||||
"windows-targets 0.53.3",
|
||||
"windows-targets 0.52.6",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -7192,7 +7192,7 @@ dependencies = [
|
|||
"errno",
|
||||
"libc",
|
||||
"linux-raw-sys 0.9.4",
|
||||
"windows-sys 0.60.2",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -8657,7 +8657,7 @@ dependencies = [
|
|||
"getrandom 0.3.3",
|
||||
"once_cell",
|
||||
"rustix 1.0.8",
|
||||
"windows-sys 0.61.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -10197,7 +10197,7 @@ version = "0.1.11"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
||||
dependencies = [
|
||||
"windows-sys 0.61.0",
|
||||
"windows-sys 0.52.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue