Auto merge of #28832 - servo:dependabot/cargo/xdg-2.4.1, r=jdm

Bump xdg from 2.2.0 to 2.4.1

Bumps [xdg](https://github.com/whitequark/rust-xdg) from 2.2.0 to 2.4.1.
<details>
<summary>Commits</summary>
<ul>
<li><a href="ce43f34c46"><code>ce43f34</code></a> Bump version.</li>
<li><a href="3a8255683b"><code>3a82556</code></a> cargo: Bump dirs to 4.0</li>
<li><a href="1e2020a763"><code>1e2020a</code></a> Bump version.</li>
<li><a href="214767b2dd"><code>214767b</code></a> Fix use of deprecated Error::description().</li>
<li><a href="d40c0abe6d"><code>d40c0ab</code></a> Fix unused Result in tests.</li>
<li><a href="cc5ee275d2"><code>cc5ee27</code></a> Update dirs dependency.</li>
<li><a href="4eb5b18c36"><code>4eb5b18</code></a> Bump version.</li>
<li><a href="067eacbddb"><code>067eacb</code></a> Add public XDG_RUNTIME_DIR method</li>
<li><a href="c2921e01ad"><code>c2921e0</code></a> Implement DoubleEndedIterator for FileFindIterator</li>
<li><a href="ff8f3d7f72"><code>ff8f3d7</code></a> Add XDG_STATE_HOME support</li>
<li>Additional commits viewable in <a href="https://github.com/whitequark/rust-xdg/compare/v2.2.0...v2.4.1">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xdg&package-manager=cargo&previous-version=2.2.0&new-version=2.4.1)](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 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>
This commit is contained in:
bors-servo 2022-04-09 18:26:52 -04:00 committed by GitHub
commit e5026796d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
Cargo.lock generated
View file

@ -1465,6 +1465,15 @@ dependencies = [
"crypto-common",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-next"
version = "2.0.0"
@ -1475,6 +1484,17 @@ dependencies = [
"dirs-sys-next",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
@ -7614,9 +7634,12 @@ dependencies = [
[[package]]
name = "xdg"
version = "2.2.0"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
checksum = "0c4583db5cbd4c4c0303df2d15af80f0539db703fa1c68802d4cbbd2dd0f88f6"
dependencies = [
"dirs",
]
[[package]]
name = "xi-unicode"