martin/Cargo.lock

2994 lines
72 KiB
Plaintext
Raw Normal View History

2019-04-12 13:48:54 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-22 21:44:26 +03:00
version = 3
2018-02-21 13:37:31 +03:00
[[package]]
name = "actix"
version = "0.13.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f728064aca1c318585bf4bb04ffcfac9e75e508ab4e8b1bd9ba5dfe04e2cbed5"
dependencies = [
"actix-rt",
"actix_derive",
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot 0.12.1",
"pin-project-lite",
"smallvec",
"tokio",
"tokio-util",
]
2020-09-27 11:31:53 +03:00
[[package]]
name = "actix-codec"
version = "0.5.0"
2020-09-27 11:31:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
2020-09-27 11:31:53 +03:00
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"bytes",
"futures-core",
"futures-sink",
"log",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
]
[[package]]
name = "actix-cors"
chore(deps): bump actix-cors from 0.6.3 to 0.6.4 (#468) Bumps [actix-cors](https://github.com/actix/actix-extras) from 0.6.3 to 0.6.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-extras/releases">actix-cors's releases</a>.</em></p> <blockquote> <h2>actix-cors: v0.6.4</h2> <ul> <li>Add <code>Cors::allow_private_network_access()</code> behind an unstable flag (<code>draft-private-network-access</code>). <a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/297">#297</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-extras/commit/b95ce3a2101f141ee673b6c7ee552d9603310394"><code>b95ce3a</code></a> prepare actix-cors release 0.6.4</li> <li><a href="https://github.com/actix/actix-extras/commit/ac444ca798694dfeeab002c9bf422469622a17ee"><code>ac444ca</code></a> add support for private network access cors header (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/297">#297</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/fb8a814acb3166ac6c44a49b7e8895cc00e8c564"><code>fb8a814</code></a> session: Fix a typo in a link to actix-redis (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/293">#293</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/da0a806e8d254d3a2bea36721928805476c7d5d5"><code>da0a806</code></a> clippy</li> <li><a href="https://github.com/actix/actix-extras/commit/d28ab6eaa1386ff9ca0fc88cfb648a28f8e4bcc7"><code>d28ab6e</code></a> CORS origin does not end with / (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/291">#291</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/a2c5cbd6374b322e6e6c8440029432df81f8f664"><code>a2c5cbd</code></a> fix cors changelog</li> <li>See full diff in <a href="https://github.com/actix/actix-extras/compare/cors-v0.6.3...cors-v0.6.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-cors&package-manager=cargo&previous-version=0.6.3&new-version=0.6.4)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-31 05:42:38 +03:00
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): bump actix-cors from 0.6.3 to 0.6.4 (#468) Bumps [actix-cors](https://github.com/actix/actix-extras) from 0.6.3 to 0.6.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-extras/releases">actix-cors's releases</a>.</em></p> <blockquote> <h2>actix-cors: v0.6.4</h2> <ul> <li>Add <code>Cors::allow_private_network_access()</code> behind an unstable flag (<code>draft-private-network-access</code>). <a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/297">#297</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-extras/commit/b95ce3a2101f141ee673b6c7ee552d9603310394"><code>b95ce3a</code></a> prepare actix-cors release 0.6.4</li> <li><a href="https://github.com/actix/actix-extras/commit/ac444ca798694dfeeab002c9bf422469622a17ee"><code>ac444ca</code></a> add support for private network access cors header (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/297">#297</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/fb8a814acb3166ac6c44a49b7e8895cc00e8c564"><code>fb8a814</code></a> session: Fix a typo in a link to actix-redis (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/293">#293</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/da0a806e8d254d3a2bea36721928805476c7d5d5"><code>da0a806</code></a> clippy</li> <li><a href="https://github.com/actix/actix-extras/commit/d28ab6eaa1386ff9ca0fc88cfb648a28f8e4bcc7"><code>d28ab6e</code></a> CORS origin does not end with / (<a href="https://github-redirect.dependabot.com/actix/actix-extras/issues/291">#291</a>)</li> <li><a href="https://github.com/actix/actix-extras/commit/a2c5cbd6374b322e6e6c8440029432df81f8f664"><code>a2c5cbd</code></a> fix cors changelog</li> <li>See full diff in <a href="https://github.com/actix/actix-extras/compare/cors-v0.6.3...cors-v0.6.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-cors&package-manager=cargo&previous-version=0.6.3&new-version=0.6.4)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-31 05:42:38 +03:00
checksum = "b340e9cfa5b08690aae90fb61beb44e9b06f44fe3d0f93781aaa58cfba86245e"
dependencies = [
"actix-utils",
"actix-web",
"derive_more",
"futures-util",
"log",
"once_cell",
"smallvec",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "actix-http"
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
checksum = "c2079246596c18b4a33e274ae10c0e50613f4d32a4198e09c7b93771013fed74"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
"ahash 0.8.3",
2023-01-23 09:48:53 +03:00
"base64 0.21.0",
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
2022-02-12 17:25:52 +03:00
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
2023-01-23 09:48:53 +03:00
"tokio",
"tokio-util",
"tracing",
2023-02-02 07:47:48 +03:00
"zstd 0.12.3+zstd.1.5.2",
]
[[package]]
name = "actix-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
dependencies = [
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "actix-router"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
dependencies = [
"bytestring",
"http",
"regex",
"serde",
"tracing",
]
[[package]]
name = "actix-rt"
2023-01-23 09:48:53 +03:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-23 09:48:53 +03:00
checksum = "15265b6b8e2347670eb363c47fc8c75208b4a4994b27192f345fcbe707804f3e"
dependencies = [
"actix-macros",
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2023-01-23 09:48:53 +03:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-23 09:48:53 +03:00
checksum = "3e8613a75dd50cc45f473cee3c34d59ed677c0f7b44480ce3b8247d7dc519327"
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
"num_cpus",
"socket2",
"tokio",
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
"futures-core",
"paste",
"pin-project-lite",
]
2020-09-27 11:31:53 +03:00
[[package]]
name = "actix-utils"
version = "3.0.1"
2020-09-27 11:31:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
2020-09-27 11:31:53 +03:00
dependencies = [
"local-waker",
"pin-project-lite",
]
[[package]]
name = "actix-web"
chore(deps): Bump actix-web from 4.3.0 to 4.3.1 (#586) Bumps [actix-web](https://github.com/actix/actix-web) from 4.3.0 to 4.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-web's releases</a>.</em></p> <blockquote> <h2>actix-web: v4.3.1</h2> <ul> <li>Add support for custom methods with the <code>#[route]</code> macro. <a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a></li> </ul> <p><a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a>: <a href="https://github-redirect.dependabot.com/actix/actix-web/pull/2969">actix/actix-web#2969</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/e35ec28cd27e34bd4cc76d843975c24231db2b59"><code>e35ec28</code></a> prepare actix-web release 4.3.1</li> <li><a href="https://github.com/actix/actix-web/commit/35006e9cae904ac28ffe81e62ac2e0110346121d"><code>35006e9</code></a> prepare actix-web-codegen release 4.2.0</li> <li><a href="https://github.com/actix/actix-web/commit/115701eb862aa8f3f764735aefe6ad687f8102b5"><code>115701e</code></a> prepare awc release 3.1.1</li> <li><a href="https://github.com/actix/actix-web/commit/e2fed91efd9c4a6e89b4ee5f7e977aa612c3100b"><code>e2fed91</code></a> format markdown with prettier</li> <li><a href="https://github.com/actix/actix-web/commit/d4b833ccf0dd16ca2623e3822062ac5579c36dd5"><code>d4b833c</code></a> actix-multipart: Feature: Add typed multipart form extractor (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2883">#2883</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/358c1cf85baa06b1c7b75795e6de06599b84f52b"><code>358c1cf</code></a> improve docs for app_config methods</li> <li><a href="https://github.com/actix/actix-web/commit/42193bee295ce131f18fbc0d49b7206214717330"><code>42193be</code></a> fix typos (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2982">#2982</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/dc08ea044b75a3f21fac632c9ab364cebe1ad61c"><code>dc08ea0</code></a> clippy</li> <li><a href="https://github.com/actix/actix-web/commit/85d88ffadab590a8f0e66336b45c3f7e7d020972"><code>85d88ff</code></a> Fix minor typo in Markdown (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2977">#2977</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/bf19a0e761f0ab1274bff1be956c1eaa82f057a7"><code>bf19a0e</code></a> added body manipulation example for error handlers (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2973">#2973</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actix/actix-web/compare/web-v4.3.0...web-v4.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-web&package-manager=cargo&previous-version=4.3.0&new-version=4.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-27 06:52:44 +03:00
version = "4.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump actix-web from 4.3.0 to 4.3.1 (#586) Bumps [actix-web](https://github.com/actix/actix-web) from 4.3.0 to 4.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-web's releases</a>.</em></p> <blockquote> <h2>actix-web: v4.3.1</h2> <ul> <li>Add support for custom methods with the <code>#[route]</code> macro. <a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a></li> </ul> <p><a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a>: <a href="https://github-redirect.dependabot.com/actix/actix-web/pull/2969">actix/actix-web#2969</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/e35ec28cd27e34bd4cc76d843975c24231db2b59"><code>e35ec28</code></a> prepare actix-web release 4.3.1</li> <li><a href="https://github.com/actix/actix-web/commit/35006e9cae904ac28ffe81e62ac2e0110346121d"><code>35006e9</code></a> prepare actix-web-codegen release 4.2.0</li> <li><a href="https://github.com/actix/actix-web/commit/115701eb862aa8f3f764735aefe6ad687f8102b5"><code>115701e</code></a> prepare awc release 3.1.1</li> <li><a href="https://github.com/actix/actix-web/commit/e2fed91efd9c4a6e89b4ee5f7e977aa612c3100b"><code>e2fed91</code></a> format markdown with prettier</li> <li><a href="https://github.com/actix/actix-web/commit/d4b833ccf0dd16ca2623e3822062ac5579c36dd5"><code>d4b833c</code></a> actix-multipart: Feature: Add typed multipart form extractor (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2883">#2883</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/358c1cf85baa06b1c7b75795e6de06599b84f52b"><code>358c1cf</code></a> improve docs for app_config methods</li> <li><a href="https://github.com/actix/actix-web/commit/42193bee295ce131f18fbc0d49b7206214717330"><code>42193be</code></a> fix typos (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2982">#2982</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/dc08ea044b75a3f21fac632c9ab364cebe1ad61c"><code>dc08ea0</code></a> clippy</li> <li><a href="https://github.com/actix/actix-web/commit/85d88ffadab590a8f0e66336b45c3f7e7d020972"><code>85d88ff</code></a> Fix minor typo in Markdown (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2977">#2977</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/bf19a0e761f0ab1274bff1be956c1eaa82f057a7"><code>bf19a0e</code></a> added body manipulation example for error handlers (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2973">#2973</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actix/actix-web/compare/web-v4.3.0...web-v4.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-web&package-manager=cargo&previous-version=4.3.0&new-version=4.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-27 06:52:44 +03:00
checksum = "cd3cb42f9566ab176e1ef0b8b3a896529062b4efc6be0123046095914c4c1c96"
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
"ahash 0.7.6",
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
"http",
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
chore(deps): Bump actix-web from 4.3.0 to 4.3.1 (#586) Bumps [actix-web](https://github.com/actix/actix-web) from 4.3.0 to 4.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-web's releases</a>.</em></p> <blockquote> <h2>actix-web: v4.3.1</h2> <ul> <li>Add support for custom methods with the <code>#[route]</code> macro. <a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a></li> </ul> <p><a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a>: <a href="https://github-redirect.dependabot.com/actix/actix-web/pull/2969">actix/actix-web#2969</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/e35ec28cd27e34bd4cc76d843975c24231db2b59"><code>e35ec28</code></a> prepare actix-web release 4.3.1</li> <li><a href="https://github.com/actix/actix-web/commit/35006e9cae904ac28ffe81e62ac2e0110346121d"><code>35006e9</code></a> prepare actix-web-codegen release 4.2.0</li> <li><a href="https://github.com/actix/actix-web/commit/115701eb862aa8f3f764735aefe6ad687f8102b5"><code>115701e</code></a> prepare awc release 3.1.1</li> <li><a href="https://github.com/actix/actix-web/commit/e2fed91efd9c4a6e89b4ee5f7e977aa612c3100b"><code>e2fed91</code></a> format markdown with prettier</li> <li><a href="https://github.com/actix/actix-web/commit/d4b833ccf0dd16ca2623e3822062ac5579c36dd5"><code>d4b833c</code></a> actix-multipart: Feature: Add typed multipart form extractor (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2883">#2883</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/358c1cf85baa06b1c7b75795e6de06599b84f52b"><code>358c1cf</code></a> improve docs for app_config methods</li> <li><a href="https://github.com/actix/actix-web/commit/42193bee295ce131f18fbc0d49b7206214717330"><code>42193be</code></a> fix typos (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2982">#2982</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/dc08ea044b75a3f21fac632c9ab364cebe1ad61c"><code>dc08ea0</code></a> clippy</li> <li><a href="https://github.com/actix/actix-web/commit/85d88ffadab590a8f0e66336b45c3f7e7d020972"><code>85d88ff</code></a> Fix minor typo in Markdown (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2977">#2977</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/bf19a0e761f0ab1274bff1be956c1eaa82f057a7"><code>bf19a0e</code></a> added body manipulation example for error handlers (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2973">#2973</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actix/actix-web/compare/web-v4.3.0...web-v4.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-web&package-manager=cargo&previous-version=4.3.0&new-version=4.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-27 06:52:44 +03:00
version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump actix-web from 4.3.0 to 4.3.1 (#586) Bumps [actix-web](https://github.com/actix/actix-web) from 4.3.0 to 4.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-web's releases</a>.</em></p> <blockquote> <h2>actix-web: v4.3.1</h2> <ul> <li>Add support for custom methods with the <code>#[route]</code> macro. <a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a></li> </ul> <p><a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2969">#2969</a>: <a href="https://github-redirect.dependabot.com/actix/actix-web/pull/2969">actix/actix-web#2969</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/e35ec28cd27e34bd4cc76d843975c24231db2b59"><code>e35ec28</code></a> prepare actix-web release 4.3.1</li> <li><a href="https://github.com/actix/actix-web/commit/35006e9cae904ac28ffe81e62ac2e0110346121d"><code>35006e9</code></a> prepare actix-web-codegen release 4.2.0</li> <li><a href="https://github.com/actix/actix-web/commit/115701eb862aa8f3f764735aefe6ad687f8102b5"><code>115701e</code></a> prepare awc release 3.1.1</li> <li><a href="https://github.com/actix/actix-web/commit/e2fed91efd9c4a6e89b4ee5f7e977aa612c3100b"><code>e2fed91</code></a> format markdown with prettier</li> <li><a href="https://github.com/actix/actix-web/commit/d4b833ccf0dd16ca2623e3822062ac5579c36dd5"><code>d4b833c</code></a> actix-multipart: Feature: Add typed multipart form extractor (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2883">#2883</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/358c1cf85baa06b1c7b75795e6de06599b84f52b"><code>358c1cf</code></a> improve docs for app_config methods</li> <li><a href="https://github.com/actix/actix-web/commit/42193bee295ce131f18fbc0d49b7206214717330"><code>42193be</code></a> fix typos (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2982">#2982</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/dc08ea044b75a3f21fac632c9ab364cebe1ad61c"><code>dc08ea0</code></a> clippy</li> <li><a href="https://github.com/actix/actix-web/commit/85d88ffadab590a8f0e66336b45c3f7e7d020972"><code>85d88ff</code></a> Fix minor typo in Markdown (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2977">#2977</a>)</li> <li><a href="https://github.com/actix/actix-web/commit/bf19a0e761f0ab1274bff1be956c1eaa82f057a7"><code>bf19a0e</code></a> added body manipulation example for error handlers (<a href="https://github-redirect.dependabot.com/actix/actix-web/issues/2973">#2973</a>)</li> <li>Additional commits viewable in <a href="https://github.com/actix/actix-web/compare/web-v4.3.0...web-v4.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-web&package-manager=cargo&previous-version=4.3.0&new-version=4.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-02-27 06:52:44 +03:00
checksum = "2262160a7ae29e3415554a3f1fc04c764b1540c116aa524683208078b7a75bc9"
dependencies = [
"actix-router",
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "actix_derive"
version = "0.6.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d44b8fee1ced9671ba043476deddef739dd0959bf77030b26b738cc591737a7"
2018-02-21 13:37:31 +03:00
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
2020-06-07 13:08:12 +03:00
]
2020-07-05 12:33:47 +03:00
[[package]]
name = "adler"
version = "1.0.2"
2018-10-17 12:11:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2018-10-17 12:11:23 +03:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "aho-corasick"
2022-11-27 05:35:49 +03:00
version = "0.7.20"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-27 05:35:49 +03:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
2017-10-09 14:29:03 +03:00
dependencies = [
"memchr",
2017-09-30 13:55:44 +03:00
]
2022-02-12 17:25:52 +03:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
2022-02-12 17:25:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
2022-02-12 17:25:52 +03:00
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
2022-02-12 17:25:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
2022-02-12 17:25:52 +03:00
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "anes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
[[package]]
name = "async-compression"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
dependencies = [
"brotli",
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2023-01-23 09:48:53 +03:00
"zstd 0.11.2+zstd.1.5.2",
"zstd-safe 5.0.2+zstd.1.5.2",
]
[[package]]
name = "async-recursion"
2023-01-21 04:48:21 +03:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-21 04:48:21 +03:00
checksum = "3b015a331cc64ebd1774ba119538573603427eaace0a1950c423ab971f903796"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
2018-01-19 14:06:01 +03:00
[[package]]
name = "async-trait"
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
version = "0.1.67"
2018-01-19 14:06:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4"
2018-01-19 14:06:01 +03:00
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 2.0.2",
2018-01-19 14:06:01 +03:00
]
[[package]]
name = "atoi"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
dependencies = [
"num-traits",
]
2018-12-18 16:59:42 +03:00
[[package]]
name = "atty"
version = "0.2.14"
2018-12-18 16:59:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
"hermit-abi 0.1.19",
"libc",
"winapi",
]
2018-12-18 16:59:42 +03:00
2020-01-11 12:05:45 +03:00
[[package]]
name = "autocfg"
2022-02-12 17:25:52 +03:00
version = "1.1.0"
2020-01-11 12:05:45 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-01-11 12:05:45 +03:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-01-23 09:48:53 +03:00
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
[[package]]
name = "bitflags"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1"
2022-01-01 20:43:04 +03:00
[[package]]
name = "block-buffer"
2023-03-09 20:37:29 +03:00
version = "0.10.4"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 20:37:29 +03:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2022-01-01 20:43:04 +03:00
dependencies = [
"generic-array",
]
2018-01-22 20:01:44 +03:00
[[package]]
2022-02-12 17:25:52 +03:00
name = "brotli"
2022-05-03 12:12:54 +03:00
version = "3.3.4"
2018-01-22 20:01:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
2018-01-22 20:01:44 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2018-02-21 13:37:31 +03:00
]
[[package]]
2022-02-12 17:25:52 +03:00
name = "brotli-decompressor"
2023-01-17 00:15:23 +03:00
version = "2.3.4"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-17 00:15:23 +03:00
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
2018-02-21 13:37:31 +03:00
dependencies = [
2022-02-12 17:25:52 +03:00
"alloc-no-stdlib",
"alloc-stdlib",
2018-01-22 20:01:44 +03:00
]
[[package]]
name = "bumpalo"
2023-01-21 04:48:21 +03:00
version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-21 04:48:21 +03:00
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
2017-09-30 13:55:44 +03:00
[[package]]
name = "byteorder"
version = "1.4.3"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2017-09-30 13:55:44 +03:00
[[package]]
name = "bytes"
2023-02-02 07:47:48 +03:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
[[package]]
name = "bytestring"
2023-03-07 02:55:25 +03:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "238e4886760d98c4f899360c834fa93e62cf7f721ac3c2da375cbdf4b8679aae"
dependencies = [
"bytes",
]
[[package]]
name = "cargo-husky"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b02b629252fe8ef6460461409564e2c21d0c8e77e0944f3d189ff06c4e932ad"
[[package]]
name = "cast"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
2018-02-21 13:37:31 +03:00
[[package]]
name = "cc"
2023-01-31 08:52:15 +03:00
version = "1.0.79"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 08:52:15 +03:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
dependencies = [
"jobserver",
]
2018-01-18 13:42:06 +03:00
2020-10-31 13:07:04 +03:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "ciborium"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0c137568cc60b904a7724001b35ce2630fd00d5d84805fbb608ab89509d788f"
dependencies = [
"ciborium-io",
"ciborium-ll",
"serde",
]
[[package]]
name = "ciborium-io"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346de753af073cc87b52b2083a506b38ac176a44cfb05497b622e27be899b369"
[[package]]
name = "ciborium-ll"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
dependencies = [
"ciborium-io",
"half",
]
[[package]]
name = "clap"
version = "3.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"clap_lex 0.2.4",
"indexmap",
"textwrap",
]
[[package]]
name = "clap"
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
version = "4.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 2.0.2",
"clap_derive",
2023-02-25 07:58:35 +03:00
"clap_lex 0.3.2",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
"is-terminal",
"once_cell",
"strsim",
"termcolor",
]
[[package]]
name = "clap_derive"
chore(deps): Bump clap from 4.1.8 to 4.1.9 (#604) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.8 to 4.1.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.9] - 2023-03-16</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Improve the assert when using the wrong action with <code>get_count</code> / <code>get_flag</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/e78bba0ec5c2ad35ab1511ebb6977bf66530f5ca"><code>e78bba0</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/84ea5b8521ae7dbcbd90fe735a3f5da094218c59"><code>84ea5b8</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/83b0437ce1df098103d08c2474753cce8874c6a8"><code>83b0437</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4764">#4764</a> from epage/true</li> <li><a href="https://github.com/clap-rs/clap/commit/4fa1ec6d68606016afca538f220d779a9702b9d4"><code>4fa1ec6</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4762">#4762</a> from epage/deps</li> <li><a href="https://github.com/clap-rs/clap/commit/c0dc1cd0084df94b0ffc02d8562ee4634f7cce66"><code>c0dc1cd</code></a> fix(parser): Clarify get_count/get_flag assertion</li> <li><a href="https://github.com/clap-rs/clap/commit/dec82598b2865542f4dd47a7c0de59a2bf6d030e"><code>dec8259</code></a> chore: Upgrade trycmd</li> <li><a href="https://github.com/clap-rs/clap/commit/6c0600a031344ee4ad2b94a1295dc2f7e389d0db"><code>6c0600a</code></a> chore: Fully specify dependencies</li> <li><a href="https://github.com/clap-rs/clap/commit/c7e929e12312b77fb30510f8942a7191f6442619"><code>c7e929e</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4752">#4752</a> from kevinmatthes/feature/cff</li> <li><a href="https://github.com/clap-rs/clap/commit/b8021a2a710b5840633c31c07f7a61e480121eaf"><code>b8021a2</code></a> test: Add CFF Validation</li> <li><a href="https://github.com/clap-rs/clap/commit/ee8231c69f966e27e7ebc65316a55e9730d0a0de"><code>ee8231c</code></a> docs: Add Replacement Rules for CITATION.cff</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.8...v4.1.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.8&new-version=4.1.9)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-17 06:24:29 +03:00
version = "4.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.1.8 to 4.1.9 (#604) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.8 to 4.1.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.9] - 2023-03-16</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Improve the assert when using the wrong action with <code>get_count</code> / <code>get_flag</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/e78bba0ec5c2ad35ab1511ebb6977bf66530f5ca"><code>e78bba0</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/84ea5b8521ae7dbcbd90fe735a3f5da094218c59"><code>84ea5b8</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/83b0437ce1df098103d08c2474753cce8874c6a8"><code>83b0437</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4764">#4764</a> from epage/true</li> <li><a href="https://github.com/clap-rs/clap/commit/4fa1ec6d68606016afca538f220d779a9702b9d4"><code>4fa1ec6</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4762">#4762</a> from epage/deps</li> <li><a href="https://github.com/clap-rs/clap/commit/c0dc1cd0084df94b0ffc02d8562ee4634f7cce66"><code>c0dc1cd</code></a> fix(parser): Clarify get_count/get_flag assertion</li> <li><a href="https://github.com/clap-rs/clap/commit/dec82598b2865542f4dd47a7c0de59a2bf6d030e"><code>dec8259</code></a> chore: Upgrade trycmd</li> <li><a href="https://github.com/clap-rs/clap/commit/6c0600a031344ee4ad2b94a1295dc2f7e389d0db"><code>6c0600a</code></a> chore: Fully specify dependencies</li> <li><a href="https://github.com/clap-rs/clap/commit/c7e929e12312b77fb30510f8942a7191f6442619"><code>c7e929e</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4752">#4752</a> from kevinmatthes/feature/cff</li> <li><a href="https://github.com/clap-rs/clap/commit/b8021a2a710b5840633c31c07f7a61e480121eaf"><code>b8021a2</code></a> test: Add CFF Validation</li> <li><a href="https://github.com/clap-rs/clap/commit/ee8231c69f966e27e7ebc65316a55e9730d0a0de"><code>ee8231c</code></a> docs: Add Replacement Rules for CITATION.cff</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.8...v4.1.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.8&new-version=4.1.9)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-17 06:24:29 +03:00
checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "clap_lex"
2023-02-25 07:58:35 +03:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 07:58:35 +03:00
checksum = "350b9cf31731f9957399229e9b2adc51eeabdfbe9d71d9a0552275fd12710d09"
dependencies = [
"os_str_bytes",
]
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2022-12-19 05:28:24 +03:00
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-19 05:28:24 +03:00
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2020-09-13 19:42:44 +03:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2020-09-13 19:42:44 +03:00
[[package]]
2021-07-16 16:08:46 +03:00
name = "cpufeatures"
version = "0.2.5"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2021-07-16 16:08:46 +03:00
dependencies = [
"libc",
]
2020-09-13 19:42:44 +03:00
[[package]]
name = "crc"
2023-01-31 08:52:15 +03:00
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 08:52:15 +03:00
checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
2023-01-12 00:35:48 +03:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 00:35:48 +03:00
checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
2018-12-07 18:52:18 +03:00
[[package]]
name = "crc32fast"
2022-02-12 17:25:52 +03:00
version = "1.3.2"
2018-12-07 18:52:18 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2018-12-07 18:52:18 +03:00
dependencies = [
"cfg-if",
2019-02-04 11:53:06 +03:00
]
[[package]]
name = "criterion"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb"
dependencies = [
"anes",
"atty",
"cast",
"ciborium",
"clap 3.2.23",
"criterion-plot",
2021-07-23 11:04:34 +03:00
"futures",
2021-09-14 14:25:53 +03:00
"itertools",
"lazy_static",
"num-traits",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_derive",
"serde_json",
"tinytemplate",
"tokio",
"walkdir",
]
[[package]]
name = "criterion-plot"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
dependencies = [
"cast",
2021-09-14 14:25:53 +03:00
"itertools",
]
2019-02-04 11:53:06 +03:00
[[package]]
name = "crossbeam-channel"
2023-03-02 06:09:06 +03:00
version = "0.5.7"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
2020-10-31 13:07:04 +03:00
dependencies = [
"cfg-if",
"crossbeam-utils",
2020-10-31 13:07:04 +03:00
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "crossbeam-deque"
2023-03-02 06:09:06 +03:00
version = "0.8.3"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2018-03-13 14:32:09 +03:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
2018-03-13 14:32:09 +03:00
]
[[package]]
name = "crossbeam-epoch"
2023-03-02 06:09:06 +03:00
version = "0.9.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
dependencies = [
2022-05-03 12:12:54 +03:00
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
2019-11-07 20:54:06 +03:00
[[package]]
name = "crossbeam-utils"
2023-03-02 06:09:06 +03:00
version = "0.8.15"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
2017-10-09 14:29:03 +03:00
dependencies = [
"cfg-if",
2020-10-31 13:07:04 +03:00
]
[[package]]
2022-01-01 20:43:04 +03:00
name = "crypto-common"
version = "0.1.6"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2020-10-31 13:07:04 +03:00
dependencies = [
"generic-array",
2022-05-03 12:12:54 +03:00
"typenum",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "ctor"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "deadpool"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"retain_mut",
"tokio",
]
[[package]]
name = "deadpool-postgres"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "836a24a9d49deefe610b8b60c767a7412e9a931d79a89415cd2d2d71630ca8d7"
dependencies = [
"deadpool",
"log",
"tokio",
"tokio-postgres",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
dependencies = [
"tokio",
]
2017-12-17 13:51:07 +03:00
[[package]]
name = "derive_more"
2022-01-01 20:43:04 +03:00
version = "0.99.17"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
2018-03-13 14:32:09 +03:00
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
2018-03-13 14:32:09 +03:00
]
2022-01-01 20:43:04 +03:00
[[package]]
name = "digest"
version = "0.10.6"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-01-01 20:43:04 +03:00
dependencies = [
"block-buffer",
2022-01-01 20:43:04 +03:00
"crypto-common",
"subtle",
]
[[package]]
name = "dotenvy"
version = "0.15.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d8c417d7a8cb362e0c37e5d815f5eb7c37f79ff93707329d5a194e42e54ca0"
2018-03-13 14:32:09 +03:00
[[package]]
name = "either"
2023-01-27 06:43:51 +03:00
version = "1.8.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-27 06:43:51 +03:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
dependencies = [
"serde",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "encoding_rs"
2023-02-02 07:47:48 +03:00
version = "0.8.32"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2018-03-13 14:32:09 +03:00
dependencies = [
"cfg-if",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "enum_dispatch"
2023-01-15 06:32:25 +03:00
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-15 06:32:25 +03:00
checksum = "11f36e95862220b211a6e2aa5eca09b4fa391b13cd52ceb8035a24bf65a79de2"
dependencies = [
"once_cell",
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
2018-01-18 19:07:14 +03:00
[[package]]
name = "env_logger"
chore(deps): bump env_logger from 0.9.3 to 0.10.0 (#493) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.9.3 to 0.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md">env_logger's changelog</a>.</em></p> <blockquote> <h2>[0.10.0] - 2022-11-24</h2> <p>MSRV changed to 1.60 to hide optional dependencies</p> <h3>Fixes</h3> <ul> <li>Resolved soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> <h3>Breaking Changes</h3> <p>To open room for changing dependencies:</p> <ul> <li>Renamed <code>termcolor</code> feature to <code>color</code></li> <li>Renamed <code>atty</code> feature to <code>auto-color</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-cli/env_logger/commit/ff029fa8b6258ed926134f51d38ee85ebd553c35"><code>ff029fa</code></a> chore: Release</li> <li><a href="https://github.com/rust-cli/env_logger/commit/389cc52d5a14b45286c6478b00148abeaeccf4a7"><code>389cc52</code></a> docs: Fix changelog links</li> <li><a href="https://github.com/rust-cli/env_logger/commit/2979c4b7b8a42e0247dee69a513249976afcd1ed"><code>2979c4b</code></a> docs: Update changelog</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4c379170f7824ac10eab9af52f5645ecae9214cd"><code>4c37917</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/248">#248</a> from epage/atty</li> <li><a href="https://github.com/rust-cli/env_logger/commit/d55d26980f338179e5d1829fb8d16b1d509530f1"><code>d55d269</code></a> style: Make clippy happy</li> <li><a href="https://github.com/rust-cli/env_logger/commit/066c2192c187f047ae178e786ff36e6cabed21f7"><code>066c219</code></a> fix: Replace atty with is_terminal</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4db5e8793162e33e17efce36057afaa41d988788"><code>4db5e87</code></a> fix!: Rename termcolor/atty features</li> <li><a href="https://github.com/rust-cli/env_logger/commit/660cf7feb27e07bd308c3952637c5ae21c438846"><code>660cf7f</code></a> fix: Bump MSRV to 1.60.0</li> <li><a href="https://github.com/rust-cli/env_logger/commit/e572d048722c0af9c891df4ac8ef0716353c807d"><code>e572d04</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/244">#244</a> from epage/update</li> <li><a href="https://github.com/rust-cli/env_logger/commit/f1ff331fa2e3f1111cd918ba91b22ad5a7070777"><code>f1ff331</code></a> docs: Fix typos</li> <li>Additional commits viewable in <a href="https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=env_logger&package-manager=cargo&previous-version=0.9.3&new-version=0.10.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-27 05:34:49 +03:00
version = "0.10.0"
2018-01-18 19:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): bump env_logger from 0.9.3 to 0.10.0 (#493) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.9.3 to 0.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md">env_logger's changelog</a>.</em></p> <blockquote> <h2>[0.10.0] - 2022-11-24</h2> <p>MSRV changed to 1.60 to hide optional dependencies</p> <h3>Fixes</h3> <ul> <li>Resolved soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> <h3>Breaking Changes</h3> <p>To open room for changing dependencies:</p> <ul> <li>Renamed <code>termcolor</code> feature to <code>color</code></li> <li>Renamed <code>atty</code> feature to <code>auto-color</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-cli/env_logger/commit/ff029fa8b6258ed926134f51d38ee85ebd553c35"><code>ff029fa</code></a> chore: Release</li> <li><a href="https://github.com/rust-cli/env_logger/commit/389cc52d5a14b45286c6478b00148abeaeccf4a7"><code>389cc52</code></a> docs: Fix changelog links</li> <li><a href="https://github.com/rust-cli/env_logger/commit/2979c4b7b8a42e0247dee69a513249976afcd1ed"><code>2979c4b</code></a> docs: Update changelog</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4c379170f7824ac10eab9af52f5645ecae9214cd"><code>4c37917</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/248">#248</a> from epage/atty</li> <li><a href="https://github.com/rust-cli/env_logger/commit/d55d26980f338179e5d1829fb8d16b1d509530f1"><code>d55d269</code></a> style: Make clippy happy</li> <li><a href="https://github.com/rust-cli/env_logger/commit/066c2192c187f047ae178e786ff36e6cabed21f7"><code>066c219</code></a> fix: Replace atty with is_terminal</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4db5e8793162e33e17efce36057afaa41d988788"><code>4db5e87</code></a> fix!: Rename termcolor/atty features</li> <li><a href="https://github.com/rust-cli/env_logger/commit/660cf7feb27e07bd308c3952637c5ae21c438846"><code>660cf7f</code></a> fix: Bump MSRV to 1.60.0</li> <li><a href="https://github.com/rust-cli/env_logger/commit/e572d048722c0af9c891df4ac8ef0716353c807d"><code>e572d04</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/244">#244</a> from epage/update</li> <li><a href="https://github.com/rust-cli/env_logger/commit/f1ff331fa2e3f1111cd918ba91b22ad5a7070777"><code>f1ff331</code></a> docs: Fix typos</li> <li>Additional commits viewable in <a href="https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=env_logger&package-manager=cargo&previous-version=0.9.3&new-version=0.10.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-27 05:34:49 +03:00
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2018-01-18 19:07:14 +03:00
dependencies = [
"humantime",
chore(deps): bump env_logger from 0.9.3 to 0.10.0 (#493) [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.9.3 to 0.10.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md">env_logger's changelog</a>.</em></p> <blockquote> <h2>[0.10.0] - 2022-11-24</h2> <p>MSRV changed to 1.60 to hide optional dependencies</p> <h3>Fixes</h3> <ul> <li>Resolved soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> <h3>Breaking Changes</h3> <p>To open room for changing dependencies:</p> <ul> <li>Renamed <code>termcolor</code> feature to <code>color</code></li> <li>Renamed <code>atty</code> feature to <code>auto-color</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-cli/env_logger/commit/ff029fa8b6258ed926134f51d38ee85ebd553c35"><code>ff029fa</code></a> chore: Release</li> <li><a href="https://github.com/rust-cli/env_logger/commit/389cc52d5a14b45286c6478b00148abeaeccf4a7"><code>389cc52</code></a> docs: Fix changelog links</li> <li><a href="https://github.com/rust-cli/env_logger/commit/2979c4b7b8a42e0247dee69a513249976afcd1ed"><code>2979c4b</code></a> docs: Update changelog</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4c379170f7824ac10eab9af52f5645ecae9214cd"><code>4c37917</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/248">#248</a> from epage/atty</li> <li><a href="https://github.com/rust-cli/env_logger/commit/d55d26980f338179e5d1829fb8d16b1d509530f1"><code>d55d269</code></a> style: Make clippy happy</li> <li><a href="https://github.com/rust-cli/env_logger/commit/066c2192c187f047ae178e786ff36e6cabed21f7"><code>066c219</code></a> fix: Replace atty with is_terminal</li> <li><a href="https://github.com/rust-cli/env_logger/commit/4db5e8793162e33e17efce36057afaa41d988788"><code>4db5e87</code></a> fix!: Rename termcolor/atty features</li> <li><a href="https://github.com/rust-cli/env_logger/commit/660cf7feb27e07bd308c3952637c5ae21c438846"><code>660cf7f</code></a> fix: Bump MSRV to 1.60.0</li> <li><a href="https://github.com/rust-cli/env_logger/commit/e572d048722c0af9c891df4ac8ef0716353c807d"><code>e572d04</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rust-cli/env_logger/issues/244">#244</a> from epage/update</li> <li><a href="https://github.com/rust-cli/env_logger/commit/f1ff331fa2e3f1111cd918ba91b22ad5a7070777"><code>f1ff331</code></a> docs: Fix typos</li> <li>Additional commits viewable in <a href="https://github.com/rust-cli/env_logger/compare/v0.9.3...v0.10.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=env_logger&package-manager=cargo&previous-version=0.9.3&new-version=0.10.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-27 05:34:49 +03:00
"is-terminal",
"log",
"regex",
"termcolor",
2018-02-21 13:37:31 +03:00
]
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2017-10-09 14:29:03 +03:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2017-10-09 14:29:03 +03:00
[[package]]
name = "fastrand"
2023-02-15 04:56:48 +03:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-15 04:56:48 +03:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "flate2"
2022-11-27 05:35:49 +03:00
version = "1.0.25"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-27 05:35:49 +03:00
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2018-02-21 13:37:31 +03:00
dependencies = [
"crc32fast",
"miniz_oxide",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "flume"
version = "0.10.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
dependencies = [
"futures-core",
"futures-sink",
"pin-project",
"spin",
]
[[package]]
name = "fmmap"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de47572bd3bf7eb669581e4303b922dde85432800a3228f6824f6a04ee455ab"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"enum_dispatch",
"fs4",
"memmapix",
"parse-display",
"pin-project-lite",
"tokio",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "fnv"
2020-06-07 13:08:12 +03:00
version = "1.0.7"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-02-21 13:37:31 +03:00
2019-02-04 11:53:06 +03:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
2019-02-15 16:32:38 +03:00
version = "0.1.1"
2019-02-04 11:53:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-02-04 11:53:06 +03:00
2020-12-20 15:45:58 +03:00
[[package]]
name = "form_urlencoded"
version = "1.1.0"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2020-12-20 15:45:58 +03:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fs4"
2023-01-31 08:52:15 +03:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 08:52:15 +03:00
checksum = "8ea55201cc351fdb478217c0fb641b59813da9b4efe4c414a9d8f989a657d149"
dependencies = [
"async-trait",
"libc",
"rustix 0.35.13",
"tokio",
"winapi",
]
[[package]]
name = "futures"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
[[package]]
name = "futures-executor"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.11.2",
]
[[package]]
name = "futures-io"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
[[package]]
name = "futures-macro"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "futures-sink"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
[[package]]
name = "futures-task"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
[[package]]
name = "futures-util"
2023-03-11 19:46:36 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-11 19:46:36 +03:00
checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "generic-array"
version = "0.14.6"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2018-03-13 14:32:09 +03:00
dependencies = [
"typenum",
"version_check",
2018-03-13 14:32:09 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "getrandom"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "h2"
2023-03-02 06:09:06 +03:00
version = "0.3.16"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
2018-02-21 13:37:31 +03:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2020-09-13 19:42:44 +03:00
[[package]]
name = "hashbrown"
version = "0.12.3"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
"ahash 0.7.6",
]
[[package]]
name = "hashlink"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
dependencies = [
"hashbrown",
]
2020-09-13 19:42:44 +03:00
[[package]]
name = "heck"
2023-02-02 07:47:48 +03:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
2021-07-16 16:08:46 +03:00
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2023-02-06 08:37:40 +03:00
[[package]]
name = "hermit-abi"
2023-02-11 09:09:42 +03:00
version = "0.3.1"
2023-02-06 08:37:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 09:09:42 +03:00
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2023-02-06 08:37:40 +03:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hilbert_2d"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "705f81e042b11734af35c701c7f6b65f8a968a430621fa2c95e72e27f9f8be5c"
2017-10-09 14:29:03 +03:00
[[package]]
name = "hmac"
2022-05-03 12:12:54 +03:00
version = "0.12.1"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2017-10-09 14:29:03 +03:00
dependencies = [
"digest",
2018-02-21 13:37:31 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-02-21 13:37:31 +03:00
name = "http"
version = "0.2.9"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2017-09-30 13:55:44 +03:00
dependencies = [
"bytes",
"fnv",
"itoa",
2017-09-30 13:55:44 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "httparse"
version = "1.8.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2018-02-21 13:37:31 +03:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2018-03-13 14:32:09 +03:00
[[package]]
name = "humantime"
version = "2.1.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2018-03-13 14:32:09 +03:00
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "indexmap"
version = "1.9.2"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
dependencies = [
"autocfg",
"hashbrown",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "indoc"
chore(deps): Bump indoc from 2.0.0 to 2.0.1 (#594) Bumps [indoc](https://github.com/dtolnay/indoc) from 2.0.0 to 2.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/indoc/releases">indoc's releases</a>.</em></p> <blockquote> <h2>2.0.1</h2> <ul> <li>Set html_root_url attribute</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/indoc/commit/be271b7b81c603f408fd6b116249c7421e06d690"><code>be271b7</code></a> Release 2.0.1</li> <li><a href="https://github.com/dtolnay/indoc/commit/b2ce0125c3bcbb3b87f73275a8bdf5a2a2f6f90f"><code>b2ce012</code></a> Set html_root_url</li> <li><a href="https://github.com/dtolnay/indoc/commit/c48e82b53507828d67dd2bffdb774c93665bb057"><code>c48e82b</code></a> Ignore let_underscore_untyped pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/indoc/commit/2da1152cf9be03a9c7dd101eb3d6bcec6ebd769b"><code>2da1152</code></a> Revert &quot;Resolve let_underscore_untyped pedantic clippy lint in test&quot;</li> <li><a href="https://github.com/dtolnay/indoc/commit/d8eeca9b12852e46bda9419e92202a7e738a4cb7"><code>d8eeca9</code></a> Resolve let_underscore_untyped pedantic clippy lint in test</li> <li><a href="https://github.com/dtolnay/indoc/commit/bbdb3a94f5bc83a120ab51bfa334ea13a6963939"><code>bbdb3a9</code></a> Raise minimum tested compiler to 1.59</li> <li><a href="https://github.com/dtolnay/indoc/commit/39d542cd2a38395bde36724ce190ca787098af51"><code>39d542c</code></a> Enable type layout randomization in CI on nightly</li> <li><a href="https://github.com/dtolnay/indoc/commit/8b812b97ffc40d27c165a2eefd88bc3e6f81e312"><code>8b812b9</code></a> Support a manual trigger on CI workflow</li> <li><a href="https://github.com/dtolnay/indoc/commit/0661472de354b5f278ac1c41de8584f693b16e1c"><code>0661472</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/indoc/issues/60">#60</a> from dtolnay/issue50</li> <li><a href="https://github.com/dtolnay/indoc/commit/9bee3db85efc69c9848229e9b911b681d8b27c2b"><code>9bee3db</code></a> Add ui test of current behavior of capture in nested macro</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/indoc/compare/2.0.0...2.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=indoc&package-manager=cargo&previous-version=2.0.0&new-version=2.0.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:46:34 +03:00
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump indoc from 2.0.0 to 2.0.1 (#594) Bumps [indoc](https://github.com/dtolnay/indoc) from 2.0.0 to 2.0.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/indoc/releases">indoc's releases</a>.</em></p> <blockquote> <h2>2.0.1</h2> <ul> <li>Set html_root_url attribute</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/indoc/commit/be271b7b81c603f408fd6b116249c7421e06d690"><code>be271b7</code></a> Release 2.0.1</li> <li><a href="https://github.com/dtolnay/indoc/commit/b2ce0125c3bcbb3b87f73275a8bdf5a2a2f6f90f"><code>b2ce012</code></a> Set html_root_url</li> <li><a href="https://github.com/dtolnay/indoc/commit/c48e82b53507828d67dd2bffdb774c93665bb057"><code>c48e82b</code></a> Ignore let_underscore_untyped pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/indoc/commit/2da1152cf9be03a9c7dd101eb3d6bcec6ebd769b"><code>2da1152</code></a> Revert &quot;Resolve let_underscore_untyped pedantic clippy lint in test&quot;</li> <li><a href="https://github.com/dtolnay/indoc/commit/d8eeca9b12852e46bda9419e92202a7e738a4cb7"><code>d8eeca9</code></a> Resolve let_underscore_untyped pedantic clippy lint in test</li> <li><a href="https://github.com/dtolnay/indoc/commit/bbdb3a94f5bc83a120ab51bfa334ea13a6963939"><code>bbdb3a9</code></a> Raise minimum tested compiler to 1.59</li> <li><a href="https://github.com/dtolnay/indoc/commit/39d542cd2a38395bde36724ce190ca787098af51"><code>39d542c</code></a> Enable type layout randomization in CI on nightly</li> <li><a href="https://github.com/dtolnay/indoc/commit/8b812b97ffc40d27c165a2eefd88bc3e6f81e312"><code>8b812b9</code></a> Support a manual trigger on CI workflow</li> <li><a href="https://github.com/dtolnay/indoc/commit/0661472de354b5f278ac1c41de8584f693b16e1c"><code>0661472</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/indoc/issues/60">#60</a> from dtolnay/issue50</li> <li><a href="https://github.com/dtolnay/indoc/commit/9bee3db85efc69c9848229e9b911b681d8b27c2b"><code>9bee3db</code></a> Add ui test of current behavior of capture in nested macro</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/indoc/compare/2.0.0...2.0.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=indoc&package-manager=cargo&previous-version=2.0.0&new-version=2.0.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:46:34 +03:00
checksum = "9f2cb48b81b1dc9f39676bf99f5499babfec7cd8fe14307f7b3d747208fb5690"
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "io-lifetimes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "io-lifetimes"
2023-03-07 02:55:25 +03:00
version = "1.0.6"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "cfa919a82ea574332e2de6e74b4c36e74d41982b335080fa59d4ef31be20fdf3"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
dependencies = [
"libc",
2023-02-02 07:47:48 +03:00
"windows-sys 0.45.0",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
]
[[package]]
name = "is-terminal"
2023-02-25 07:58:35 +03:00
version = "0.4.4"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 07:58:35 +03:00
checksum = "21b6b32576413a8e69b90e952e4a026476040d81017b80445deda5f2d3921857"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
dependencies = [
2023-02-11 09:09:42 +03:00
"hermit-abi 0.3.1",
2023-03-07 02:55:25 +03:00
"io-lifetimes 1.0.6",
"rustix 0.36.9",
2023-02-06 08:37:40 +03:00
"windows-sys 0.45.0",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
]
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
2022-01-01 20:43:04 +03:00
[[package]]
name = "itoa"
2023-03-07 02:55:25 +03:00
version = "1.0.6"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2022-01-01 20:43:04 +03:00
[[package]]
name = "jobserver"
2023-03-02 06:09:06 +03:00
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
dependencies = [
"libc",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "js-sys"
2023-02-02 07:47:48 +03:00
version = "0.3.61"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
2018-02-21 13:37:31 +03:00
dependencies = [
"wasm-bindgen",
2018-02-21 13:37:31 +03:00
]
2017-09-30 13:55:44 +03:00
2018-03-13 14:32:09 +03:00
[[package]]
name = "language-tags"
version = "0.3.2"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2018-03-13 14:32:09 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "lazy_static"
2019-08-30 18:42:24 +03:00
version = "1.4.0"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-01-18 13:42:06 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "libc"
2023-03-09 20:37:29 +03:00
version = "0.2.140"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 20:37:29 +03:00
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
[[package]]
name = "libsqlite3-sys"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linux-raw-sys"
version = "0.0.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "linux-raw-sys"
2022-12-14 18:35:51 +03:00
version = "0.1.4"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-14 18:35:51 +03:00
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "local-channel"
version = "0.1.3"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
dependencies = [
"futures-core",
"futures-sink",
"futures-util",
"local-waker",
]
2018-01-18 13:42:06 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "local-waker"
version = "0.1.3"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
2018-07-25 15:02:31 +03:00
[[package]]
name = "lock_api"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
2022-05-03 12:12:54 +03:00
"autocfg",
"scopeguard",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "log"
2022-05-03 12:12:54 +03:00
version = "0.4.17"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2018-01-18 13:42:06 +03:00
dependencies = [
"cfg-if",
2018-01-22 20:01:44 +03:00
]
2018-01-16 15:55:05 +03:00
[[package]]
name = "martin"
version = "0.8.0"
2018-01-16 15:55:05 +03:00
dependencies = [
"actix",
"actix-cors",
"actix-http",
"actix-rt",
"actix-web",
"async-trait",
"brotli",
"cargo-husky",
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"clap 4.1.11",
"criterion",
"ctor",
"deadpool-postgres",
"env_logger",
"flate2",
"futures",
"indoc",
2021-09-14 14:25:53 +03:00
"itertools",
"log",
"martin-mbtiles",
"martin-tile-utils",
"num_cpus",
"openssl",
"pmtiles",
"postgis",
"postgres",
"postgres-openssl",
"postgres-protocol",
"regex",
"semver",
"serde",
"serde_json",
"serde_yaml",
"subst",
"thiserror",
"tilejson",
2018-01-16 15:55:05 +03:00
]
[[package]]
name = "martin-mbtiles"
version = "0.1.0"
dependencies = [
"actix-rt",
"futures",
"log",
"martin-tile-utils",
"serde_json",
"sqlx",
"thiserror",
"tilejson",
]
[[package]]
name = "martin-tile-utils"
version = "0.1.0"
dependencies = [
"serde",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "md-5"
version = "0.10.5"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
dependencies = [
"digest",
]
2017-10-09 14:29:03 +03:00
2018-01-18 13:42:06 +03:00
[[package]]
name = "memchr"
2022-05-03 12:12:54 +03:00
version = "2.5.0"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2017-10-09 14:29:03 +03:00
[[package]]
name = "memmapix"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa20aa603283688ba48d9ee8c225b900aebf0d0a871630ed5239e7bf606e5fd1"
dependencies = [
"rustix 0.35.13",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "memoffset"
2023-03-02 06:09:06 +03:00
version = "0.8.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
2019-07-28 18:05:15 +03:00
dependencies = [
"autocfg",
2019-07-28 18:05:15 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mime"
2020-01-09 12:11:54 +03:00
version = "0.3.16"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2018-02-21 13:37:31 +03:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2018-10-17 12:11:23 +03:00
[[package]]
name = "miniz_oxide"
2023-02-06 08:37:40 +03:00
version = "0.6.2"
2020-07-05 12:33:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-06 08:37:40 +03:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2020-07-05 12:33:47 +03:00
dependencies = [
"adler",
2020-07-05 12:33:47 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mio"
2023-02-15 04:56:48 +03:00
version = "0.8.6"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-15 04:56:48 +03:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2018-02-21 13:37:31 +03:00
dependencies = [
"libc",
"log",
"wasi",
2023-02-15 04:56:48 +03:00
"windows-sys 0.45.0",
]
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "nom"
2023-01-17 00:15:23 +03:00
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-17 00:15:23 +03:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "num-traits"
2022-05-03 12:12:54 +03:00
version = "0.2.15"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2017-09-30 13:55:44 +03:00
dependencies = [
"autocfg",
2017-09-30 13:55:44 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "num_cpus"
chore(deps): Bump num_cpus from 1.14.0 to 1.15.0 (#532) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.14.0 to 1.15.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/releases">num_cpus's releases</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h2>Fixes</h2> <ul> <li>update hermit-abi</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/striezel"><code>@​striezel</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/126">seanmonstar/num_cpus#126</a></li> <li><a href="https://github.com/buffet"><code>@​buffet</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/127">seanmonstar/num_cpus#127</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md">num_cpus's changelog</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h3>Fixes</h3> <ul> <li>update hermit-abi</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/5bea3c7986c2a5c6763ca1b3f6d6982aca7cdc23"><code>5bea3c7</code></a> v1.15.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/ccb5a6792574252633625168f3430916068ec16b"><code>ccb5a67</code></a> chore: update hermit-abi to 0.2.6 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/127">#127</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/e437b9d9083d717692e35d917de8674a7987dd06"><code>e437b9d</code></a> ci: update actions/checkout in GitHub Actions workflows to v3 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/126">#126</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.14.0...v1.15.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num_cpus&package-manager=cargo&previous-version=1.14.0&new-version=1.15.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-22 05:29:04 +03:00
version = "1.15.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump num_cpus from 1.14.0 to 1.15.0 (#532) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.14.0 to 1.15.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/releases">num_cpus's releases</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h2>Fixes</h2> <ul> <li>update hermit-abi</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/striezel"><code>@​striezel</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/126">seanmonstar/num_cpus#126</a></li> <li><a href="https://github.com/buffet"><code>@​buffet</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/127">seanmonstar/num_cpus#127</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md">num_cpus's changelog</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h3>Fixes</h3> <ul> <li>update hermit-abi</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/5bea3c7986c2a5c6763ca1b3f6d6982aca7cdc23"><code>5bea3c7</code></a> v1.15.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/ccb5a6792574252633625168f3430916068ec16b"><code>ccb5a67</code></a> chore: update hermit-abi to 0.2.6 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/127">#127</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/e437b9d9083d717692e35d917de8674a7987dd06"><code>e437b9d</code></a> ci: update actions/checkout in GitHub Actions workflows to v3 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/126">#126</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.14.0...v1.15.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num_cpus&package-manager=cargo&previous-version=1.14.0&new-version=1.15.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-22 05:29:04 +03:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2017-10-09 14:29:03 +03:00
dependencies = [
chore(deps): Bump num_cpus from 1.14.0 to 1.15.0 (#532) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.14.0 to 1.15.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/releases">num_cpus's releases</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h2>Fixes</h2> <ul> <li>update hermit-abi</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/striezel"><code>@​striezel</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/126">seanmonstar/num_cpus#126</a></li> <li><a href="https://github.com/buffet"><code>@​buffet</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/pull/127">seanmonstar/num_cpus#127</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md">num_cpus's changelog</a>.</em></p> <blockquote> <h2>v1.15.0</h2> <h3>Fixes</h3> <ul> <li>update hermit-abi</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/5bea3c7986c2a5c6763ca1b3f6d6982aca7cdc23"><code>5bea3c7</code></a> v1.15.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/ccb5a6792574252633625168f3430916068ec16b"><code>ccb5a67</code></a> chore: update hermit-abi to 0.2.6 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/127">#127</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/e437b9d9083d717692e35d917de8674a7987dd06"><code>e437b9d</code></a> ci: update actions/checkout in GitHub Actions workflows to v3 (<a href="https://github-redirect.dependabot.com/seanmonstar/num_cpus/issues/126">#126</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.14.0...v1.15.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=num_cpus&package-manager=cargo&previous-version=1.14.0&new-version=1.15.0)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-12-22 05:29:04 +03:00
"hermit-abi 0.2.6",
"libc",
2018-02-21 13:37:31 +03:00
]
2020-06-07 13:08:12 +03:00
[[package]]
name = "once_cell"
2023-02-15 04:56:48 +03:00
version = "1.17.1"
2020-06-07 13:08:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-15 04:56:48 +03:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2020-06-07 13:08:12 +03:00
[[package]]
name = "oorandom"
2020-12-20 15:45:58 +03:00
version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-12-20 15:45:58 +03:00
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
[[package]]
name = "openssl"
chore(deps): Bump openssl from 0.10.46 to 0.10.47 (#608) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.46 to 0.10.47. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/ead5e0a0aa27ce440285a5eefd04acc8488e56db"><code>ead5e0a</code></a> Release openssl v0.10.47</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/803e245fa5721ac30a36888565f18c102567d877"><code>803e245</code></a> Release openssl-sys v0.9.82</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/f533aa168a42f7ce0cb1ad7814ed7c61c31a7fd8"><code>f533aa1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1849">#1849</a> from sfackler/libressl-371</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/286320cd0d0c4745b0f78f9ccbfc0ebaa0e46a6f"><code>286320c</code></a> bump libressl to 3.7.1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e62129f54d1181b1efe2616529fbe11b7571d2a6"><code>e62129f</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1848">#1848</a> from alex/expose-lib-reason</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/4bc21b01fe2010c11444e0f5f72592bd7c5f38d5"><code>4bc21b0</code></a> Expose the raw library and reason codes on Error</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/9ea51ec9cb277e8cd70549e6c3fca66d479c0bab"><code>9ea51ec</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1846">#1846</a> from alex/25519-is-libre</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0d44062e96937100563a425816b8b6859dcbb62a"><code>0d44062</code></a> Enable X/Ed25519 support on LibreSSL 3.7.0</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/39d1436205aaff51526e776aae690059dd45ac82"><code>39d1436</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1845">#1845</a> from alex/25519-is-boring</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/2fe8b94066f1063ec78b0502052e4558379514a0"><code>2fe8b94</code></a> Enable X/Ed25519 support on BoringSSL</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.46...openssl-v0.10.47">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.46&new-version=0.10.47)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:44:24 +03:00
version = "0.10.47"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump openssl from 0.10.46 to 0.10.47 (#608) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.46 to 0.10.47. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/ead5e0a0aa27ce440285a5eefd04acc8488e56db"><code>ead5e0a</code></a> Release openssl v0.10.47</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/803e245fa5721ac30a36888565f18c102567d877"><code>803e245</code></a> Release openssl-sys v0.9.82</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/f533aa168a42f7ce0cb1ad7814ed7c61c31a7fd8"><code>f533aa1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1849">#1849</a> from sfackler/libressl-371</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/286320cd0d0c4745b0f78f9ccbfc0ebaa0e46a6f"><code>286320c</code></a> bump libressl to 3.7.1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e62129f54d1181b1efe2616529fbe11b7571d2a6"><code>e62129f</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1848">#1848</a> from alex/expose-lib-reason</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/4bc21b01fe2010c11444e0f5f72592bd7c5f38d5"><code>4bc21b0</code></a> Expose the raw library and reason codes on Error</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/9ea51ec9cb277e8cd70549e6c3fca66d479c0bab"><code>9ea51ec</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1846">#1846</a> from alex/25519-is-libre</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0d44062e96937100563a425816b8b6859dcbb62a"><code>0d44062</code></a> Enable X/Ed25519 support on LibreSSL 3.7.0</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/39d1436205aaff51526e776aae690059dd45ac82"><code>39d1436</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1845">#1845</a> from alex/25519-is-boring</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/2fe8b94066f1063ec78b0502052e4558379514a0"><code>2fe8b94</code></a> Enable X/Ed25519 support on BoringSSL</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.46...openssl-v0.10.47">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.46&new-version=0.10.47)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:44:24 +03:00
checksum = "d8b277f87dacc05a6b709965d1cbafac4649d6ce9f3ce9ceb88508b5666dfec9"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
2022-05-03 12:12:54 +03:00
"openssl-macros",
"openssl-sys",
]
2022-05-03 12:12:54 +03:00
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
2022-05-03 12:12:54 +03:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-src"
2023-03-02 06:09:06 +03:00
version = "111.25.1+1.1.1t"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
chore(deps): Bump openssl from 0.10.46 to 0.10.47 (#608) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.46 to 0.10.47. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/ead5e0a0aa27ce440285a5eefd04acc8488e56db"><code>ead5e0a</code></a> Release openssl v0.10.47</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/803e245fa5721ac30a36888565f18c102567d877"><code>803e245</code></a> Release openssl-sys v0.9.82</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/f533aa168a42f7ce0cb1ad7814ed7c61c31a7fd8"><code>f533aa1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1849">#1849</a> from sfackler/libressl-371</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/286320cd0d0c4745b0f78f9ccbfc0ebaa0e46a6f"><code>286320c</code></a> bump libressl to 3.7.1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e62129f54d1181b1efe2616529fbe11b7571d2a6"><code>e62129f</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1848">#1848</a> from alex/expose-lib-reason</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/4bc21b01fe2010c11444e0f5f72592bd7c5f38d5"><code>4bc21b0</code></a> Expose the raw library and reason codes on Error</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/9ea51ec9cb277e8cd70549e6c3fca66d479c0bab"><code>9ea51ec</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1846">#1846</a> from alex/25519-is-libre</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0d44062e96937100563a425816b8b6859dcbb62a"><code>0d44062</code></a> Enable X/Ed25519 support on LibreSSL 3.7.0</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/39d1436205aaff51526e776aae690059dd45ac82"><code>39d1436</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1845">#1845</a> from alex/25519-is-boring</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/2fe8b94066f1063ec78b0502052e4558379514a0"><code>2fe8b94</code></a> Enable X/Ed25519 support on BoringSSL</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.46...openssl-v0.10.47">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.46&new-version=0.10.47)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:44:24 +03:00
version = "0.9.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump openssl from 0.10.46 to 0.10.47 (#608) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.46 to 0.10.47. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/ead5e0a0aa27ce440285a5eefd04acc8488e56db"><code>ead5e0a</code></a> Release openssl v0.10.47</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/803e245fa5721ac30a36888565f18c102567d877"><code>803e245</code></a> Release openssl-sys v0.9.82</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/f533aa168a42f7ce0cb1ad7814ed7c61c31a7fd8"><code>f533aa1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1849">#1849</a> from sfackler/libressl-371</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/286320cd0d0c4745b0f78f9ccbfc0ebaa0e46a6f"><code>286320c</code></a> bump libressl to 3.7.1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e62129f54d1181b1efe2616529fbe11b7571d2a6"><code>e62129f</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1848">#1848</a> from alex/expose-lib-reason</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/4bc21b01fe2010c11444e0f5f72592bd7c5f38d5"><code>4bc21b0</code></a> Expose the raw library and reason codes on Error</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/9ea51ec9cb277e8cd70549e6c3fca66d479c0bab"><code>9ea51ec</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1846">#1846</a> from alex/25519-is-libre</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0d44062e96937100563a425816b8b6859dcbb62a"><code>0d44062</code></a> Enable X/Ed25519 support on LibreSSL 3.7.0</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/39d1436205aaff51526e776aae690059dd45ac82"><code>39d1436</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1845">#1845</a> from alex/25519-is-boring</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/2fe8b94066f1063ec78b0502052e4558379514a0"><code>2fe8b94</code></a> Enable X/Ed25519 support on BoringSSL</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.46...openssl-v0.10.47">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=openssl&package-manager=cargo&previous-version=0.10.46&new-version=0.10.47)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:44:24 +03:00
checksum = "a95792af3c4e0153c3914df2261bedd30a98476f94dc892b67dfe1d89d433a04"
dependencies = [
"autocfg",
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
2019-06-19 12:34:06 +03:00
]
[[package]]
name = "os_str_bytes"
2022-11-21 07:04:22 +03:00
version = "6.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-21 07:04:22 +03:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core 0.8.6",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
2023-02-02 07:47:48 +03:00
"parking_lot_core 0.9.7",
]
[[package]]
name = "parking_lot_core"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
dependencies = [
"cfg-if",
"instant",
"libc",
"redox_syscall",
"smallvec",
"winapi",
]
2022-05-03 12:12:54 +03:00
[[package]]
name = "parking_lot_core"
2023-02-02 07:47:48 +03:00
version = "0.9.7"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-05-03 12:12:54 +03:00
dependencies = [
"cfg-if",
2022-05-03 12:12:54 +03:00
"libc",
"redox_syscall",
"smallvec",
2023-02-02 07:47:48 +03:00
"windows-sys 0.45.0",
2022-05-03 12:12:54 +03:00
]
[[package]]
name = "parse-display"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b25af4ef94a8528b41fb49a696e361dc6ef975c782417268072d987ac327964"
dependencies = [
"once_cell",
"parse-display-derive",
"regex",
]
[[package]]
name = "parse-display-derive"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73f106cced1f4b645e3fca6125105cdf7407e35d1af710f290aac530f6b826b9"
dependencies = [
"once_cell",
"proc-macro2",
"quote",
"regex",
"regex-syntax",
"structmeta",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "paste"
2023-03-07 02:55:25 +03:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
2019-07-28 18:05:15 +03:00
[[package]]
name = "percent-encoding"
version = "2.2.0"
2019-07-28 18:05:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2018-02-21 13:37:31 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
dependencies = [
2020-10-31 13:07:04 +03:00
"phf_shared",
]
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf_shared"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
dependencies = [
2020-10-31 13:07:04 +03:00
"siphasher",
]
[[package]]
name = "pin-project"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
2020-12-20 15:45:58 +03:00
[[package]]
name = "pin-project-lite"
2022-05-03 12:12:54 +03:00
version = "0.2.9"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2020-12-20 15:45:58 +03:00
[[package]]
name = "pin-utils"
version = "0.1.0"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2017-10-09 14:29:03 +03:00
[[package]]
name = "pkg-config"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
[[package]]
name = "plotters"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97"
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
[[package]]
name = "plotters-svg"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f"
dependencies = [
"plotters-backend",
]
[[package]]
name = "pmtiles"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42b045da58fad5677d6c342a9f238dcc82b3786f1e091d1ea6d86acffef7b82d"
dependencies = [
"async-compression",
"async-recursion",
"async-trait",
"bytes",
"fmmap",
"hilbert_2d",
"serde",
"serde_json",
"tilejson",
"tokio",
"varint-rs",
]
[[package]]
name = "postgis"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b52406590b7a682cadd0f0339c43905eb323568e84a2e97e855ef92645e0ec09"
dependencies = [
"byteorder",
"bytes",
"postgres-types",
]
2017-09-30 13:55:44 +03:00
[[package]]
2017-10-09 14:29:03 +03:00
name = "postgres"
version = "0.19.4"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "960c214283ef8f0027974c03e9014517ced5db12f021a9abb66185a5751fab0a"
2017-10-09 14:29:03 +03:00
dependencies = [
"bytes",
"fallible-iterator",
"futures-util",
"log",
"tokio",
"tokio-postgres",
]
[[package]]
name = "postgres-openssl"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1de0ea6504e07ca78355a6fb88ad0f36cafe9e696cbc6717f16a207f3a60be72"
dependencies = [
"futures",
"openssl",
"tokio",
"tokio-openssl",
"tokio-postgres",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
2017-10-09 14:29:03 +03:00
name = "postgres-protocol"
2022-05-03 12:12:54 +03:00
version = "0.6.4"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "878c6cbf956e03af9aa8204b407b9cbf47c072164800aa918c516cd4b056c50c"
2017-10-09 14:29:03 +03:00
dependencies = [
2023-01-23 09:48:53 +03:00
"base64 0.13.1",
"byteorder",
"bytes",
"fallible-iterator",
"hmac",
"md-5",
"memchr",
"rand",
"sha2",
"stringprep",
2017-10-09 14:29:03 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "postgres-types"
version = "0.2.4"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73d946ec7d256b04dfadc4e6a3292324e6f417124750fc5c0950f981b703a0f1"
2017-09-30 13:55:44 +03:00
dependencies = [
"bytes",
"fallible-iterator",
"postgres-protocol",
"serde",
"serde_json",
"time",
"uuid",
2017-10-09 14:29:03 +03:00
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2019-08-20 12:19:04 +03:00
[[package]]
name = "proc-macro2"
2023-03-13 06:57:16 +03:00
version = "1.0.52"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 06:57:16 +03:00
checksum = "1d0e1ae9e836cc3beddd63db0df682593d7e2d3d891ae8c9083d2113e1744224"
2019-08-20 12:19:04 +03:00
dependencies = [
"unicode-ident",
2019-08-20 12:19:04 +03:00
]
[[package]]
name = "quote"
2023-03-15 06:12:26 +03:00
version = "1.0.26"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-15 06:12:26 +03:00
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2019-08-20 12:19:04 +03:00
dependencies = [
"proc-macro2",
2019-08-20 12:19:04 +03:00
]
[[package]]
name = "rand"
2022-05-03 12:12:54 +03:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-07-16 16:08:46 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "rayon"
2023-03-07 02:55:25 +03:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-03-07 02:55:25 +03:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
]
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex"
2023-01-12 00:35:48 +03:00
version = "1.7.1"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 00:35:48 +03:00
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
2017-10-09 14:29:03 +03:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2017-10-09 14:29:03 +03:00
]
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex-syntax"
version = "0.6.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2021-07-16 16:08:46 +03:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
2021-07-16 16:08:46 +03:00
]
[[package]]
name = "rustix"
version = "0.35.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"errno",
"io-lifetimes 0.7.5",
"libc",
"linux-raw-sys 0.0.46",
2023-02-02 07:47:48 +03:00
"windows-sys 0.42.0",
]
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
[[package]]
name = "rustix"
2023-03-07 02:55:25 +03:00
version = "0.36.9"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "fd5c6ff11fecd55b40746d1995a02f2eb375bf8c00d192d521ee09f42bef37bc"
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
"errno",
2023-03-07 02:55:25 +03:00
"io-lifetimes 1.0.6",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
"libc",
"linux-raw-sys 0.1.4",
2023-02-06 08:37:40 +03:00
"windows-sys 0.45.0",
chore(deps): bump clap from 4.0.26 to 4.0.27 (#492) Bumps [clap](https://github.com/clap-rs/clap) from 4.0.26 to 4.0.27. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.0.27] - 2022-11-24</h2> <h3>Features</h3> <ul> <li>Have <code>Arg::value_parser</code> accept <code>Vec&lt;impl Into&lt;PossibleValue&gt;&gt;</code></li> <li>Implement <code>Display</code> and <code>FromStr</code> for <code>ColorChoice</code></li> </ul> <h3>Fixes</h3> <ul> <li>Remove soundness issue by switching from <code>atty</code> to <code>is-terminal</code></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/3262016c26587e97c18187dffc60978a3b1547ae"><code>3262016</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/757f95b2e93b61731c0dcbb34a06fbe424bc7dfa"><code>757f95b</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/20e02eb34eafd23095bed3fa9768027633775839"><code>20e02eb</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4509">#4509</a> from epage/possible</li> <li><a href="https://github.com/clap-rs/clap/commit/fb1d960fe2840cc29ccef6cff9f80c79e42ae813"><code>fb1d960</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4249">#4249</a> from jcgruenhage/replace-atty</li> <li><a href="https://github.com/clap-rs/clap/commit/94aca92e44a4a6974a087afdf3c3bfa19f631a05"><code>94aca92</code></a> feat: Create ValueParser from Vec&lt;PossibleValue&gt;</li> <li><a href="https://github.com/clap-rs/clap/commit/3bccfced1af69aa6130688b9a29d3d2ca55429f4"><code>3bccfce</code></a> docs: Clarify PossibleValue is likely not needed</li> <li><a href="https://github.com/clap-rs/clap/commit/19981a2455cdc2e5f0469cf6a02d32e08b99308c"><code>19981a2</code></a> docs: Clarify ColorChoice impls ValueEnum</li> <li><a href="https://github.com/clap-rs/clap/commit/8d92f3e7a8b3621b1a841e2375ce5c6748e764ba"><code>8d92f3e</code></a> feat: Add Display/FromStr to ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/ed683ef2485b08e320046570ae918b1ff51e8805"><code>ed683ef</code></a> fix: Always expose ColorChoice</li> <li><a href="https://github.com/clap-rs/clap/commit/789bfd6813caa1328c71887b1d013eb9526d8920"><code>789bfd6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/clap-rs/clap/issues/4508">#4508</a> from epage/style</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.0.26&new-version=4.0.27)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-25 05:36:50 +03:00
]
2018-08-16 14:07:19 +03:00
[[package]]
name = "ryu"
2023-03-07 02:55:25 +03:00
version = "1.0.13"
2018-08-16 14:07:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2018-08-16 14:07:19 +03:00
2018-09-15 12:49:25 +03:00
[[package]]
name = "same-file"
2020-01-11 12:05:45 +03:00
version = "1.0.6"
2018-09-15 12:49:25 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2018-09-15 12:49:25 +03:00
[[package]]
name = "schannel"
2023-01-12 00:35:48 +03:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 00:35:48 +03:00
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
dependencies = [
2023-02-02 07:47:48 +03:00
"windows-sys 0.42.0",
]
2019-06-19 12:34:06 +03:00
[[package]]
name = "scopeguard"
2020-02-17 12:05:02 +03:00
version = "1.1.0"
2019-06-19 12:34:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-06-19 12:34:06 +03:00
[[package]]
name = "security-framework"
2023-01-31 08:52:15 +03:00
version = "2.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 08:52:15 +03:00
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
dependencies = [
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-01-21 04:48:21 +03:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-21 04:48:21 +03:00
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
chore(deps): Bump semver from 1.0.16 to 1.0.17 (#599) Bumps [semver](https://github.com/dtolnay/semver) from 1.0.16 to 1.0.17. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>1.0.17</h2> <ul> <li>Improve error message when <code>Version</code> is being parsed from an empty string (<a href="https://redirect.github.com/dtolnay/semver/issues/296">#296</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/semver/commit/1b162e8dd2283a62380c30b04cf8444c9c194d5c"><code>1b162e8</code></a> Release 1.0.17</li> <li><a href="https://github.com/dtolnay/semver/commit/c113ff9d3bfe771db894176a9d3380d948035748"><code>c113ff9</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/semver/issues/296">#296</a> from dtolnay/empty</li> <li><a href="https://github.com/dtolnay/semver/commit/d92a4d8ff7d1a90caf9fcac9bf120c360455d8d9"><code>d92a4d8</code></a> Add a dedicated error for parsing Version from empty string</li> <li><a href="https://github.com/dtolnay/semver/commit/cc2cfed67c17dfe6abae18726830bdb6d7cf740d"><code>cc2cfed</code></a> Enable type layout randomization in CI on nightly</li> <li><a href="https://github.com/dtolnay/semver/commit/ee2b627ccaa4d18a510ec0d50075d36a8ddfc0a5"><code>ee2b627</code></a> Support a manual trigger on CI workflow</li> <li><a href="https://github.com/dtolnay/semver/commit/7c5eea4bfa4b04de263a262b68d3c4e7d282447d"><code>7c5eea4</code></a> Ignore extra_unused_type_parameters clippy lint in test</li> <li><a href="https://github.com/dtolnay/semver/commit/7fd09f701237e2136da66e7d6290b317eacf70fb"><code>7fd09f7</code></a> Speed up cargo fuzz CI job</li> <li><a href="https://github.com/dtolnay/semver/commit/fe2264f180df5fee35a6141a9400c24ff3add5c4"><code>fe2264f</code></a> Prevent actions duplication on noop merge commits</li> <li><a href="https://github.com/dtolnay/semver/commit/c9916cdef71d0791f0734c8883b6de188a19044c"><code>c9916cd</code></a> Sync license text with rust-lang repos</li> <li>See full diff in <a href="https://github.com/dtolnay/semver/compare/1.0.16...1.0.17">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver&package-manager=cargo&previous-version=1.0.16&new-version=1.0.17)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-13 06:31:02 +03:00
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump semver from 1.0.16 to 1.0.17 (#599) Bumps [semver](https://github.com/dtolnay/semver) from 1.0.16 to 1.0.17. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/semver/releases">semver's releases</a>.</em></p> <blockquote> <h2>1.0.17</h2> <ul> <li>Improve error message when <code>Version</code> is being parsed from an empty string (<a href="https://redirect.github.com/dtolnay/semver/issues/296">#296</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/semver/commit/1b162e8dd2283a62380c30b04cf8444c9c194d5c"><code>1b162e8</code></a> Release 1.0.17</li> <li><a href="https://github.com/dtolnay/semver/commit/c113ff9d3bfe771db894176a9d3380d948035748"><code>c113ff9</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/semver/issues/296">#296</a> from dtolnay/empty</li> <li><a href="https://github.com/dtolnay/semver/commit/d92a4d8ff7d1a90caf9fcac9bf120c360455d8d9"><code>d92a4d8</code></a> Add a dedicated error for parsing Version from empty string</li> <li><a href="https://github.com/dtolnay/semver/commit/cc2cfed67c17dfe6abae18726830bdb6d7cf740d"><code>cc2cfed</code></a> Enable type layout randomization in CI on nightly</li> <li><a href="https://github.com/dtolnay/semver/commit/ee2b627ccaa4d18a510ec0d50075d36a8ddfc0a5"><code>ee2b627</code></a> Support a manual trigger on CI workflow</li> <li><a href="https://github.com/dtolnay/semver/commit/7c5eea4bfa4b04de263a262b68d3c4e7d282447d"><code>7c5eea4</code></a> Ignore extra_unused_type_parameters clippy lint in test</li> <li><a href="https://github.com/dtolnay/semver/commit/7fd09f701237e2136da66e7d6290b317eacf70fb"><code>7fd09f7</code></a> Speed up cargo fuzz CI job</li> <li><a href="https://github.com/dtolnay/semver/commit/fe2264f180df5fee35a6141a9400c24ff3add5c4"><code>fe2264f</code></a> Prevent actions duplication on noop merge commits</li> <li><a href="https://github.com/dtolnay/semver/commit/c9916cdef71d0791f0734c8883b6de188a19044c"><code>c9916cd</code></a> Sync license text with rust-lang repos</li> <li>See full diff in <a href="https://github.com/dtolnay/semver/compare/1.0.16...1.0.17">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=semver&package-manager=cargo&previous-version=1.0.16&new-version=1.0.17)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-13 06:31:02 +03:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde"
2023-03-15 06:12:26 +03:00
version = "1.0.156"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-15 06:12:26 +03:00
checksum = "314b5b092c0ade17c00142951e50ced110ec27cea304b1037c6969246c2469a4"
2019-04-08 10:38:25 +03:00
dependencies = [
"serde_derive",
2019-04-08 10:38:25 +03:00
]
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde_derive"
2023-03-15 06:12:26 +03:00
version = "1.0.156"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-15 06:12:26 +03:00
checksum = "d7e29c4601e36bcec74a223228dce795f4cd3616341a4af93520ca1a837c087d"
2017-12-17 13:51:07 +03:00
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
2017-12-17 13:51:07 +03:00
]
[[package]]
name = "serde_json"
chore(deps): Bump serde_json from 1.0.93 to 1.0.94 (#590) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.93 to 1.0.94. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.94</h2> <ul> <li>Fix message duplication between serde_json::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/991">#991</a>, <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/992">#992</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a15bd0968639884ec7b73107360d58fd655e2071"><code>a15bd09</code></a> Release 1.0.94</li> <li><a href="https://github.com/serde-rs/json/commit/3e418b13be142ca5c484eb1db6b3a02e2f8121e0"><code>3e418b1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/992">#992</a> from dtolnay/errorsource</li> <li><a href="https://github.com/serde-rs/json/commit/7eeb169f9b51e2a30997d6c92aa3e170a2927b7f"><code>7eeb169</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/serde-rs/json/commit/d9447c30eb0ff682923499dfb18fb229d5dea84d"><code>d9447c3</code></a> Ignore let_underscore_untyped pedantic clippy lint</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.93...v1.0.94">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.93&new-version=1.0.94)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:33:34 +03:00
version = "1.0.94"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump serde_json from 1.0.93 to 1.0.94 (#590) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.93 to 1.0.94. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.94</h2> <ul> <li>Fix message duplication between serde_json::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/991">#991</a>, <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/992">#992</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/a15bd0968639884ec7b73107360d58fd655e2071"><code>a15bd09</code></a> Release 1.0.94</li> <li><a href="https://github.com/serde-rs/json/commit/3e418b13be142ca5c484eb1db6b3a02e2f8121e0"><code>3e418b1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/serde-rs/json/issues/992">#992</a> from dtolnay/errorsource</li> <li><a href="https://github.com/serde-rs/json/commit/7eeb169f9b51e2a30997d6c92aa3e170a2927b7f"><code>7eeb169</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/serde-rs/json/commit/d9447c30eb0ff682923499dfb18fb229d5dea84d"><code>d9447c3</code></a> Ignore let_underscore_untyped pedantic clippy lint</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.93...v1.0.94">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.93&new-version=1.0.94)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:33:34 +03:00
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
2017-12-17 13:51:07 +03:00
dependencies = [
"indexmap",
"itoa",
"ryu",
"serde",
2018-08-25 12:50:24 +03:00
]
[[package]]
name = "serde_tuple"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427"
dependencies = [
"serde",
"serde_tuple_macros",
]
[[package]]
name = "serde_tuple_macros"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "serde_urlencoded"
2022-02-12 17:25:52 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-12 17:25:52 +03:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2018-07-25 15:02:31 +03:00
[[package]]
name = "serde_yaml"
chore(deps): Bump serde_yaml from 0.9.17 to 0.9.19 (#592) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.17 to 0.9.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.9.19</h2> <ul> <li>Fix message duplication between serde_yaml::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/359">#359</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a>)</li> </ul> <h2>0.9.18</h2> <ul> <li>Add support for emitting Unicode characters over codepoint U+FFFF (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/356">#356</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/4e1cbd8d2feda364b0358e19e19a23e442208f89"><code>4e1cbd8</code></a> Release 0.9.19</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f351fc7a124a0c5176cbdf98fcd2537df5902cbc"><code>f351fc7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a> from dtolnay/errorsource</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f27e4c5da3122a15d7be19d721a220516eeadcd2"><code>f27e4c5</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/fc039c635774e72072bda044f75e53b8877e2004"><code>fc039c6</code></a> Refer to std::error::Error trait as StdError</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/7f1db12843a72e797cdaf3f49506c19b51659a64"><code>7f1db12</code></a> Release 0.9.18</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/248d6de914b912695f6613ed0d4d0035d82e893e"><code>248d6de</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/358">#358</a> from dtolnay/unicode</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/779f01676b3ac07a9bc8624d1f79c814b776ba6d"><code>779f016</code></a> Update U+1F389 test</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/12b48b5547213f0c6179e4a666fb29caa46bc453"><code>12b48b5</code></a> Pull in Unicode high codepoints fix from unsafe-libyaml 0.2.7</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b6f69579df44b3d200d8975f862ef92e3e23db61"><code>b6f6957</code></a> Add test of Unicode larger than U+FFFF</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/eac69a2a0bda6828e4b79ba3d57967099433e14c"><code>eac69a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/357">#357</a> from dtolnay/stringescape</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.17...0.9.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.17&new-version=0.9.19)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:39:07 +03:00
version = "0.9.19"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump serde_yaml from 0.9.17 to 0.9.19 (#592) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.17 to 0.9.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.9.19</h2> <ul> <li>Fix message duplication between serde_yaml::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/359">#359</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a>)</li> </ul> <h2>0.9.18</h2> <ul> <li>Add support for emitting Unicode characters over codepoint U+FFFF (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/356">#356</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/4e1cbd8d2feda364b0358e19e19a23e442208f89"><code>4e1cbd8</code></a> Release 0.9.19</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f351fc7a124a0c5176cbdf98fcd2537df5902cbc"><code>f351fc7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a> from dtolnay/errorsource</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f27e4c5da3122a15d7be19d721a220516eeadcd2"><code>f27e4c5</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/fc039c635774e72072bda044f75e53b8877e2004"><code>fc039c6</code></a> Refer to std::error::Error trait as StdError</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/7f1db12843a72e797cdaf3f49506c19b51659a64"><code>7f1db12</code></a> Release 0.9.18</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/248d6de914b912695f6613ed0d4d0035d82e893e"><code>248d6de</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/358">#358</a> from dtolnay/unicode</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/779f01676b3ac07a9bc8624d1f79c814b776ba6d"><code>779f016</code></a> Update U+1F389 test</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/12b48b5547213f0c6179e4a666fb29caa46bc453"><code>12b48b5</code></a> Pull in Unicode high codepoints fix from unsafe-libyaml 0.2.7</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b6f69579df44b3d200d8975f862ef92e3e23db61"><code>b6f6957</code></a> Add test of Unicode larger than U+FFFF</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/eac69a2a0bda6828e4b79ba3d57967099433e14c"><code>eac69a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/357">#357</a> from dtolnay/stringescape</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.17...0.9.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.17&new-version=0.9.19)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:39:07 +03:00
checksum = "f82e6c8c047aa50a7328632d067bcae6ef38772a79e28daf32f735e0e4f3dd10"
2018-07-25 15:02:31 +03:00
dependencies = [
2021-09-14 14:25:53 +03:00
"indexmap",
"itoa",
2022-01-01 20:43:04 +03:00
"ryu",
"serde",
"unsafe-libyaml",
2018-07-25 15:02:31 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "sha1"
version = "0.10.5"
2022-02-12 17:25:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-02-12 17:25:52 +03:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
2022-02-12 17:25:52 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "sha2"
version = "0.10.6"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2017-10-09 14:29:03 +03:00
dependencies = [
"cfg-if",
2021-07-16 16:08:46 +03:00
"cpufeatures",
"digest",
2017-10-09 14:29:03 +03:00
]
2019-05-01 09:42:59 +03:00
[[package]]
name = "signal-hook-registry"
2023-02-13 09:25:45 +03:00
version = "1.4.1"
2018-10-25 16:42:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-13 09:25:45 +03:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2018-10-25 16:42:37 +03:00
dependencies = [
"libc",
2018-10-25 16:42:37 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "siphasher"
2022-05-03 12:12:54 +03:00
version = "0.3.10"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2017-10-09 14:29:03 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "slab"
version = "0.4.8"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
dependencies = [
"autocfg",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "smallvec"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "socket2"
2023-03-07 02:55:25 +03:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "spin"
2023-03-13 21:05:02 +03:00
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "b5d6e0250b93c8427a177b849d144a96d5acc57006149479403d7861ab721e34"
dependencies = [
"lock_api",
]
[[package]]
name = "sqlformat"
2023-01-15 06:32:25 +03:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-15 06:32:25 +03:00
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
dependencies = [
"itertools",
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
dependencies = [
"sqlx-core",
"sqlx-macros",
]
[[package]]
name = "sqlx-core"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
dependencies = [
chore(deps): Bump actix-http from 3.3.0 to 3.3.1 (#589) Bumps [actix-http](https://github.com/actix/actix-web) from 3.3.0 to 3.3.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actix/actix-web/releases">actix-http's releases</a>.</em></p> <blockquote> <h2>actix-http: v3.3.1</h2> <h3>Fixed</h3> <ul> <li>Use correct <code>http</code> version requirement to ensure support for const <code>HeaderName</code> definitions.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actix/actix-web/commit/ea8bf361041b35aa281835540f1e8aba9679aceb"><code>ea8bf36</code></a> update web and awc changelogs</li> <li><a href="https://github.com/actix/actix-web/commit/0b5b463cfa951d96ec6b0167964ef613b0d2b091"><code>0b5b463</code></a> prepare web and awc releases</li> <li>See full diff in <a href="https://github.com/actix/actix-web/compare/web-v3.3.0...web-v3.3.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actix-http&package-manager=cargo&previous-version=3.3.0&new-version=3.3.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-03 06:32:41 +03:00
"ahash 0.7.6",
"atoi",
chore(deps): Bump clap from 4.1.9 to 4.1.11 (#607) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.9 to 4.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/releases">clap's releases</a>.</em></p> <blockquote> <h2>v4.1.11</h2> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>v4.1.10</h2> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/clap-rs/clap/blob/master/CHANGELOG.md">clap's changelog</a>.</em></p> <blockquote> <h2>[4.1.11] - 2023-03-17</h2> <h3>Internal</h3> <ul> <li>Update <code>bitflags</code></li> </ul> <h2>[4.1.10] - 2023-03-17</h2> <h3>Fixes</h3> <ul> <li><em>(help)</em> On Windows, avoid underlined text artifacts</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/b69cf080cec55d73f0ada34b92de6c0f28aa0043"><code>b69cf08</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/4f2f7024db244643c9beb100997ef68113b550ae"><code>4f2f702</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/4c05dfb8a5d6a32f88f78fb65f54c289931ab226"><code>4c05dfb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4771">#4771</a> from nicholasbishop/bishop-update-bitflags</li> <li><a href="https://github.com/clap-rs/clap/commit/6878a1911b2509b1fb2afbaee616f6257758af41"><code>6878a19</code></a> chore: Update bitflags dep to 2.0</li> <li><a href="https://github.com/clap-rs/clap/commit/9aee6d31fdb9acd815742ac255fa7650887c9e61"><code>9aee6d3</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/97776254a7d9622252cd980b85e0d6724f0a8c42"><code>9777625</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/cdff81540c4aa9420fcf80a21df409b3bcd71850"><code>cdff815</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4767">#4767</a> from epage/win-ansi</li> <li><a href="https://github.com/clap-rs/clap/commit/fcd6a65e1810c083fe60c37db14e08262e279381"><code>fcd6a65</code></a> fix(help): Don't style newlines</li> <li>See full diff in <a href="https://github.com/clap-rs/clap/compare/v4.1.9...v4.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=clap&package-manager=cargo&previous-version=4.1.9&new-version=4.1.11)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:33:03 +03:00
"bitflags 1.3.2",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dotenvy",
"either",
"event-listener",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"hashlink",
"hex",
"indexmap",
"itoa",
"libc",
"libsqlite3-sys",
"log",
"memchr",
"once_cell",
"paste",
"percent-encoding",
"serde",
"sha2",
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
"tokio-stream",
"url",
]
[[package]]
name = "sqlx-macros"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
dependencies = [
"dotenvy",
"either",
"heck",
"hex",
"once_cell",
"proc-macro2",
"quote",
"serde",
"serde_json",
"sha2",
"sqlx-core",
"sqlx-rt",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
"url",
]
[[package]]
name = "sqlx-rt"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
dependencies = [
"native-tls",
"once_cell",
"tokio",
"tokio-native-tls",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
2017-10-09 14:29:03 +03:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
2017-10-09 14:29:03 +03:00
]
2018-10-10 19:13:53 +03:00
[[package]]
name = "strsim"
version = "0.10.0"
2018-10-10 19:13:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2018-10-10 19:13:53 +03:00
[[package]]
name = "structmeta"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bd9c2155aa89fb2c2cb87d99a610c689e7c47099b3e9f1c8a8f53faf4e3d2e3"
dependencies = [
"proc-macro2",
"quote",
"structmeta-derive",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "structmeta-derive"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bafede0d0a2f21910f36d47b1558caae3076ed80f6f3ad0fc85a91e6ba7e5938"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
[[package]]
name = "subst"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdf5c2f9dba86dae331c01e1d5d52750d4fe773a4d2267a0ab3c725296e5b596"
dependencies = [
"memchr",
"serde",
"serde_yaml",
"unicode-width",
]
[[package]]
name = "subtle"
2021-07-16 16:08:46 +03:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2017-12-17 13:51:07 +03:00
[[package]]
name = "syn"
2023-02-25 07:58:35 +03:00
version = "1.0.109"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 07:58:35 +03:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2019-08-20 12:19:04 +03:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2019-08-20 12:19:04 +03:00
]
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
[[package]]
name = "syn"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59d3276aee1fa0c33612917969b5172b5be2db051232a6e4826f1a1a9191b045"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "tempfile"
2023-03-02 06:09:06 +03:00
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95"
dependencies = [
"cfg-if",
"fastrand",
"redox_syscall",
2023-03-07 02:55:25 +03:00
"rustix 0.36.9",
2023-03-02 06:09:06 +03:00
"windows-sys 0.42.0",
]
2018-01-18 19:07:14 +03:00
[[package]]
name = "termcolor"
2023-01-17 00:15:23 +03:00
version = "1.2.0"
2018-01-18 19:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-17 00:15:23 +03:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2018-01-18 19:07:14 +03:00
dependencies = [
"winapi-util",
2018-01-18 19:07:14 +03:00
]
[[package]]
name = "textwrap"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
[[package]]
name = "thiserror"
2023-03-07 02:55:25 +03:00
version = "1.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-03-07 02:55:25 +03:00
version = "1.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
]
2018-03-28 19:15:00 +03:00
[[package]]
name = "tilejson"
chore(deps): bump tilejson from 0.3.1 to 0.3.2 (#469) Bumps [tilejson](https://github.com/georust/tilejson) from 0.3.1 to 0.3.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/georust/tilejson/releases">tilejson's releases</a>.</em></p> <blockquote> <h2>Release TileJSON v3 support, bounds, and center structs</h2> <p>Note that this GitHub release catches up to what has been release to <a href="https://crates.io/crates/tilejson">crates.io</a></p> <p><strong>ATTENTION:</strong> This release contains many breaking changes. See <a href="https://github.com/georust/tilejson/blob/HEAD/README.md">README</a> for usage examples.</p> <h3>v0.3.2 (2022-10-30)</h3> <ul> <li>Add <code>Bounds::from</code> for <code>[f64; 4]</code>, <code>[f32; 4]</code>, <code>[i32; 4]</code></li> <li>Add <code>Bounds::try_from</code> now also supports <code>&amp;[f64]</code>, <code>&amp;[f32]</code>, <code>&amp;[i32]</code> in addition to <code>Vec&lt;f64&gt;</code></li> </ul> <h3>v0.3.1 (2022-05-29)</h3> <ul> <li>Add <code>Bounds::MAX</code> to create a maximum -180..180, -90..90 value.</li> <li>Add <code>Bounds::MAX_TILED</code> to create a maximum allowed for vector tiles per spec.</li> <li>Implement <code>Add</code> and <code>AddAssign</code> on <code>Bounds</code></li> </ul> <h3>v0.3.0 (2022-05-25)</h3> <ul> <li>Migrate to Rust 2021 edition</li> <li>update docs to match v3.0.0 spec</li> <li>add <code>fillzoom</code> field per v3.0.0 spec</li> <li>add <code>Center</code> and <code>Bounds</code> structs instead of arrays <ul> <li>both support <code>FromStr</code> trait</li> </ul> </li> <li>add <code>VectorLayer</code> struct and the <code>vector_layer</code> field</li> <li>Remove builder pattern because <code>TileJSON</code> is writable</li> <li>Add <code>other</code> fields for any unknown fields in root and vector layers</li> <li>Restructure instantiation: <ul> <li>use <code>tilejson!{ source }</code> macro to create <code>TileJSON</code> objects, with any number of the optional <code>field: value</code> pairs.</li> <li>use <code>set_missing_defaults()</code> to replace all missing values with their defaults (only if the spec defines it)</li> </ul> </li> <li>Remove <code>id</code> field because it is not supported by the spec</li> </ul> <h2>Relevant PRs</h2> <ul> <li>Implement v3 by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/12">georust/tilejson#12</a></li> <li>add Center and Bounds structs by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/13">georust/tilejson#13</a></li> <li>Refactor instantiation, vector layers by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/14">georust/tilejson#14</a></li> <li>Use tilejson! macro for instantiation, refactor by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/16">georust/tilejson#16</a></li> <li>Add Bounds MAX, MAX_TILED, Add, AddAssign by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/19">georust/tilejson#19</a></li> <li>Make <code>Bounds::try_from()</code> more generic by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/18">georust/tilejson#18</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/atouchet"><code>@​atouchet</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/8">georust/tilejson#8</a></li> <li><a href="https://github.com/nyurik"><code>@​nyurik</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/9">georust/tilejson#9</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/georust/tilejson/compare/v0.2.4...v0.3.2">https://github.com/georust/tilejson/compare/v0.2.4...v0.3.2</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/georust/tilejson/blob/main/CHANGELOG.md">tilejson's changelog</a>.</em></p> <blockquote> <h3>v0.3.2 (2022-10-30)</h3> <ul> <li>Add <code>Bounds::from</code> for <code>[f64; 4]</code>, <code>[f32; 4]</code>, <code>[i32; 4]</code></li> <li>Add <code>Bounds::try_from</code> now also supports <code>&amp;[f64]</code>, <code>&amp;[f32]</code>, <code>&amp;[i32]</code> in addition to <code>Vec&lt;f64&gt;</code></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/georust/tilejson/commits/v0.3.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tilejson&package-manager=cargo&previous-version=0.3.1&new-version=0.3.2)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-31 05:43:30 +03:00
version = "0.3.2"
2018-03-28 19:15:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): bump tilejson from 0.3.1 to 0.3.2 (#469) Bumps [tilejson](https://github.com/georust/tilejson) from 0.3.1 to 0.3.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/georust/tilejson/releases">tilejson's releases</a>.</em></p> <blockquote> <h2>Release TileJSON v3 support, bounds, and center structs</h2> <p>Note that this GitHub release catches up to what has been release to <a href="https://crates.io/crates/tilejson">crates.io</a></p> <p><strong>ATTENTION:</strong> This release contains many breaking changes. See <a href="https://github.com/georust/tilejson/blob/HEAD/README.md">README</a> for usage examples.</p> <h3>v0.3.2 (2022-10-30)</h3> <ul> <li>Add <code>Bounds::from</code> for <code>[f64; 4]</code>, <code>[f32; 4]</code>, <code>[i32; 4]</code></li> <li>Add <code>Bounds::try_from</code> now also supports <code>&amp;[f64]</code>, <code>&amp;[f32]</code>, <code>&amp;[i32]</code> in addition to <code>Vec&lt;f64&gt;</code></li> </ul> <h3>v0.3.1 (2022-05-29)</h3> <ul> <li>Add <code>Bounds::MAX</code> to create a maximum -180..180, -90..90 value.</li> <li>Add <code>Bounds::MAX_TILED</code> to create a maximum allowed for vector tiles per spec.</li> <li>Implement <code>Add</code> and <code>AddAssign</code> on <code>Bounds</code></li> </ul> <h3>v0.3.0 (2022-05-25)</h3> <ul> <li>Migrate to Rust 2021 edition</li> <li>update docs to match v3.0.0 spec</li> <li>add <code>fillzoom</code> field per v3.0.0 spec</li> <li>add <code>Center</code> and <code>Bounds</code> structs instead of arrays <ul> <li>both support <code>FromStr</code> trait</li> </ul> </li> <li>add <code>VectorLayer</code> struct and the <code>vector_layer</code> field</li> <li>Remove builder pattern because <code>TileJSON</code> is writable</li> <li>Add <code>other</code> fields for any unknown fields in root and vector layers</li> <li>Restructure instantiation: <ul> <li>use <code>tilejson!{ source }</code> macro to create <code>TileJSON</code> objects, with any number of the optional <code>field: value</code> pairs.</li> <li>use <code>set_missing_defaults()</code> to replace all missing values with their defaults (only if the spec defines it)</li> </ul> </li> <li>Remove <code>id</code> field because it is not supported by the spec</li> </ul> <h2>Relevant PRs</h2> <ul> <li>Implement v3 by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/12">georust/tilejson#12</a></li> <li>add Center and Bounds structs by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/13">georust/tilejson#13</a></li> <li>Refactor instantiation, vector layers by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/14">georust/tilejson#14</a></li> <li>Use tilejson! macro for instantiation, refactor by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/16">georust/tilejson#16</a></li> <li>Add Bounds MAX, MAX_TILED, Add, AddAssign by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/19">georust/tilejson#19</a></li> <li>Make <code>Bounds::try_from()</code> more generic by <a href="https://github.com/nyurik"><code>@​nyurik</code></a> in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/18">georust/tilejson#18</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/atouchet"><code>@​atouchet</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/8">georust/tilejson#8</a></li> <li><a href="https://github.com/nyurik"><code>@​nyurik</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/georust/tilejson/pull/9">georust/tilejson#9</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/georust/tilejson/compare/v0.2.4...v0.3.2">https://github.com/georust/tilejson/compare/v0.2.4...v0.3.2</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/georust/tilejson/blob/main/CHANGELOG.md">tilejson's changelog</a>.</em></p> <blockquote> <h3>v0.3.2 (2022-10-30)</h3> <ul> <li>Add <code>Bounds::from</code> for <code>[f64; 4]</code>, <code>[f32; 4]</code>, <code>[i32; 4]</code></li> <li>Add <code>Bounds::try_from</code> now also supports <code>&amp;[f64]</code>, <code>&amp;[f32]</code>, <code>&amp;[i32]</code> in addition to <code>Vec&lt;f64&gt;</code></li> </ul> <p><!-- raw HTML omitted --><!-- raw HTML omitted --></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/georust/tilejson/commits/v0.3.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tilejson&package-manager=cargo&previous-version=0.3.1&new-version=0.3.2)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-10-31 05:43:30 +03:00
checksum = "670fbf708942b8f2304a3355935981d04d775a82eea2f99746ce6be30d4c6a7a"
2018-03-28 19:15:00 +03:00
dependencies = [
"serde",
"serde_json",
"serde_tuple",
2018-03-28 19:15:00 +03:00
]
[[package]]
name = "time"
2023-02-25 07:58:35 +03:00
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 07:58:35 +03:00
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
dependencies = [
"itoa",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
2023-02-25 07:58:35 +03:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 07:58:35 +03:00
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
dependencies = [
"time-core",
]
2018-03-13 14:32:09 +03:00
[[package]]
name = "tinytemplate"
version = "1.2.1"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2018-03-13 14:32:09 +03:00
dependencies = [
"serde",
"serde_json",
2018-06-16 19:01:08 +03:00
]
2020-06-21 12:52:13 +03:00
[[package]]
name = "tinyvec"
2022-05-03 12:12:54 +03:00
version = "1.6.0"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-03 12:12:54 +03:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-12-20 15:45:58 +03:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-06 08:37:40 +03:00
version = "0.1.1"
2020-06-21 12:52:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-06 08:37:40 +03:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-06-21 12:52:13 +03:00
2018-06-16 19:01:08 +03:00
[[package]]
name = "tokio"
2023-03-02 06:09:06 +03:00
version = "1.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-02 06:09:06 +03:00
checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64"
dependencies = [
"autocfg",
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"parking_lot 0.12.1",
"pin-project-lite",
"signal-hook-registry",
"socket2",
2023-03-02 06:09:06 +03:00
"windows-sys 0.45.0",
]
[[package]]
name = "tokio-native-tls"
2023-02-11 09:09:42 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 09:09:42 +03:00
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-openssl"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a"
dependencies = [
"futures-util",
"openssl",
"openssl-sys",
"tokio",
]
[[package]]
name = "tokio-postgres"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29a12c1b3e0704ae7dfc25562629798b29c72e6b1d0a681b6f29ab4ae5e7f7bf"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"fallible-iterator",
"futures-channel",
"futures-util",
"log",
"parking_lot 0.12.1",
"percent-encoding",
"phf",
"pin-project-lite",
"postgres-protocol",
"postgres-types",
"socket2",
"tokio",
"tokio-util",
]
[[package]]
name = "tokio-stream"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2023-02-13 09:25:45 +03:00
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-13 09:25:45 +03:00
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-05-03 12:12:54 +03:00
"tracing",
2020-09-13 19:42:44 +03:00
]
[[package]]
name = "tracing"
version = "0.1.37"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2020-09-13 19:42:44 +03:00
dependencies = [
"cfg-if",
"log",
"pin-project-lite",
"tracing-core",
2020-09-13 19:42:44 +03:00
]
[[package]]
name = "tracing-core"
version = "0.1.30"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2020-09-13 19:42:44 +03:00
dependencies = [
"once_cell",
2017-09-30 13:55:44 +03:00
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "typenum"
2022-12-07 05:38:40 +03:00
version = "1.16.0"
2021-07-16 16:08:46 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-07 05:38:40 +03:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2021-07-16 16:08:46 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-bidi"
2023-03-09 20:37:29 +03:00
version = "0.3.11"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-09 20:37:29 +03:00
checksum = "524b68aca1d05e03fdf03fcdce2c6c94b6daf6d16861ddaa7e4f2b6638a9052c"
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-ident"
2023-03-07 02:55:25 +03:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 02:55:25 +03:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2019-01-25 12:42:07 +03:00
dependencies = [
"tinyvec",
2019-01-25 12:42:07 +03:00
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "unicode-segmentation"
2023-02-02 07:47:48 +03:00
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
[[package]]
name = "unsafe-libyaml"
chore(deps): Bump serde_yaml from 0.9.17 to 0.9.19 (#592) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.17 to 0.9.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.9.19</h2> <ul> <li>Fix message duplication between serde_yaml::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/359">#359</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a>)</li> </ul> <h2>0.9.18</h2> <ul> <li>Add support for emitting Unicode characters over codepoint U+FFFF (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/356">#356</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/4e1cbd8d2feda364b0358e19e19a23e442208f89"><code>4e1cbd8</code></a> Release 0.9.19</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f351fc7a124a0c5176cbdf98fcd2537df5902cbc"><code>f351fc7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a> from dtolnay/errorsource</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f27e4c5da3122a15d7be19d721a220516eeadcd2"><code>f27e4c5</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/fc039c635774e72072bda044f75e53b8877e2004"><code>fc039c6</code></a> Refer to std::error::Error trait as StdError</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/7f1db12843a72e797cdaf3f49506c19b51659a64"><code>7f1db12</code></a> Release 0.9.18</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/248d6de914b912695f6613ed0d4d0035d82e893e"><code>248d6de</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/358">#358</a> from dtolnay/unicode</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/779f01676b3ac07a9bc8624d1f79c814b776ba6d"><code>779f016</code></a> Update U+1F389 test</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/12b48b5547213f0c6179e4a666fb29caa46bc453"><code>12b48b5</code></a> Pull in Unicode high codepoints fix from unsafe-libyaml 0.2.7</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b6f69579df44b3d200d8975f862ef92e3e23db61"><code>b6f6957</code></a> Add test of Unicode larger than U+FFFF</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/eac69a2a0bda6828e4b79ba3d57967099433e14c"><code>eac69a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/357">#357</a> from dtolnay/stringescape</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.17...0.9.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.17&new-version=0.9.19)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:39:07 +03:00
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump serde_yaml from 0.9.17 to 0.9.19 (#592) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.17 to 0.9.19. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/serde-yaml/releases">serde_yaml's releases</a>.</em></p> <blockquote> <h2>0.9.19</h2> <ul> <li>Fix message duplication between serde_yaml::Error's <code>Display</code> and <code>source()</code> (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/359">#359</a>, <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a>)</li> </ul> <h2>0.9.18</h2> <ul> <li>Add support for emitting Unicode characters over codepoint U+FFFF (<a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/356">#356</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/4e1cbd8d2feda364b0358e19e19a23e442208f89"><code>4e1cbd8</code></a> Release 0.9.19</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f351fc7a124a0c5176cbdf98fcd2537df5902cbc"><code>f351fc7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/360">#360</a> from dtolnay/errorsource</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f27e4c5da3122a15d7be19d721a220516eeadcd2"><code>f27e4c5</code></a> Fix message duplication between error Display and source()</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/fc039c635774e72072bda044f75e53b8877e2004"><code>fc039c6</code></a> Refer to std::error::Error trait as StdError</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/7f1db12843a72e797cdaf3f49506c19b51659a64"><code>7f1db12</code></a> Release 0.9.18</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/248d6de914b912695f6613ed0d4d0035d82e893e"><code>248d6de</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/358">#358</a> from dtolnay/unicode</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/779f01676b3ac07a9bc8624d1f79c814b776ba6d"><code>779f016</code></a> Update U+1F389 test</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/12b48b5547213f0c6179e4a666fb29caa46bc453"><code>12b48b5</code></a> Pull in Unicode high codepoints fix from unsafe-libyaml 0.2.7</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b6f69579df44b3d200d8975f862ef92e3e23db61"><code>b6f6957</code></a> Add test of Unicode larger than U+FFFF</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/eac69a2a0bda6828e4b79ba3d57967099433e14c"><code>eac69a2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/dtolnay/serde-yaml/issues/357">#357</a> from dtolnay/stringescape</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.17...0.9.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=serde_yaml&package-manager=cargo&previous-version=0.9.17&new-version=0.9.19)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-06 06:39:07 +03:00
checksum = "ad2024452afd3874bf539695e04af6732ba06517424dbf958fdb16a01f3bef6c"
2017-10-09 14:29:03 +03:00
[[package]]
name = "url"
version = "2.3.1"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2019-01-12 15:28:16 +03:00
dependencies = [
2020-12-20 15:45:58 +03:00
"form_urlencoded",
"idna",
"percent-encoding",
2019-01-12 15:28:16 +03:00
]
[[package]]
name = "uuid"
2023-02-02 07:47:48 +03:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79"
[[package]]
name = "varint-rs"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f54a172d0620933a27a4360d3db3e2ae0dd6cceae9730751a036bbf182c4b23"
[[package]]
name = "vcpkg"
2021-07-16 16:08:46 +03:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-16 16:08:46 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
2022-01-01 20:43:04 +03:00
version = "0.9.4"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-01 20:43:04 +03:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-01-12 15:28:16 +03:00
[[package]]
name = "walkdir"
version = "2.3.2"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2019-01-12 15:28:16 +03:00
dependencies = [
"same-file",
"winapi",
"winapi-util",
2019-01-12 15:28:16 +03:00
]
2022-05-03 12:12:54 +03:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-02-02 07:47:48 +03:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-02-02 07:47:48 +03:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-02-02 07:47:48 +03:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-02-02 07:47:48 +03:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
dependencies = [
"proc-macro2",
"quote",
chore(deps): Bump async-trait from 0.1.66 to 0.1.67 (#606) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.66 to 0.1.67. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/async-trait/releases">async-trait's releases</a>.</em></p> <blockquote> <h2>0.1.67</h2> <ul> <li>Update syn dependency to 2.x</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f8a86505696c2206676cf2355dce1a6a27d28005"><code>f8a8650</code></a> Release 0.1.67</li> <li><a href="https://github.com/dtolnay/async-trait/commit/d7a9cae8d237cdc20577982e2933e3176cdefc4e"><code>d7a9cae</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/async-trait/issues/241">#241</a> from dtolnay/syn</li> <li><a href="https://github.com/dtolnay/async-trait/commit/15fd2820ac6d18ab01b1b71fccadf38219107112"><code>15fd282</code></a> Ignore match_like_matches_macro clippy lint</li> <li><a href="https://github.com/dtolnay/async-trait/commit/032c1506e3787847a52cba311aa9459c49a9a6ba"><code>032c150</code></a> Update to syn 2</li> <li><a href="https://github.com/dtolnay/async-trait/commit/0d0a3465ebaa5ce3b821fc62e21ad70d86813244"><code>0d0a346</code></a> Update ui test suite to nightly-2023-03-17</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.66...0.1.67">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=async-trait&package-manager=cargo&previous-version=0.1.66&new-version=0.1.67)](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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-20 06:31:56 +03:00
"syn 1.0.109",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-02-02 07:47:48 +03:00
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
[[package]]
name = "web-sys"
2023-02-02 07:47:48 +03:00
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2017-09-30 13:55:44 +03:00
[[package]]
2018-01-18 13:42:06 +03:00
name = "winapi"
2020-07-05 12:33:47 +03:00
version = "0.3.9"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-01-18 13:42:06 +03:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-01-18 13:42:06 +03:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
2018-01-18 19:07:14 +03:00
version = "0.4.0"
2018-01-18 13:42:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-01-18 13:42:06 +03:00
2018-08-25 12:50:24 +03:00
[[package]]
name = "winapi-util"
version = "0.1.5"
2018-08-25 12:50:24 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2018-08-25 12:50:24 +03:00
dependencies = [
"winapi",
2018-08-25 12:50:24 +03:00
]
2018-01-18 13:42:06 +03:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
2018-01-18 19:07:14 +03:00
version = "0.4.0"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2017-09-30 13:55:44 +03:00
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows-sys"
version = "0.42.0"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-05-03 12:12:54 +03:00
dependencies = [
"windows_aarch64_gnullvm",
2023-01-12 00:35:48 +03:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
2023-01-12 00:35:48 +03:00
"windows_x86_64_msvc",
2022-05-03 12:12:54 +03:00
]
2023-02-02 07:47:48 +03:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2023-02-02 07:47:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-02-02 07:47:48 +03:00
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows_i686_gnu"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows_i686_msvc"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-05-03 12:12:54 +03:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-13 21:05:02 +03:00
version = "0.42.2"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-13 21:05:02 +03:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-05-03 12:12:54 +03:00
2018-02-21 13:37:31 +03:00
[[package]]
name = "zstd"
version = "0.11.2+zstd.1.5.2"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2018-02-21 13:37:31 +03:00
dependencies = [
2023-01-23 09:48:53 +03:00
"zstd-safe 5.0.2+zstd.1.5.2",
]
[[package]]
name = "zstd"
2023-02-02 07:47:48 +03:00
version = "0.12.3+zstd.1.5.2"
2023-01-23 09:48:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-02 07:47:48 +03:00
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
2023-01-23 09:48:53 +03:00
dependencies = [
2023-02-11 09:09:42 +03:00
"zstd-safe 6.0.4+zstd.1.5.4",
2018-02-21 13:37:31 +03:00
]
[[package]]
name = "zstd-safe"
version = "5.0.2+zstd.1.5.2"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2018-02-21 13:37:31 +03:00
dependencies = [
"libc",
"zstd-sys",
]
2023-01-23 09:48:53 +03:00
[[package]]
name = "zstd-safe"
2023-02-11 09:09:42 +03:00
version = "6.0.4+zstd.1.5.4"
2023-01-23 09:48:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 09:09:42 +03:00
checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543"
2023-01-23 09:48:53 +03:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2023-02-11 09:09:42 +03:00
version = "2.0.7+zstd.1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 09:09:42 +03:00
checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5"
dependencies = [
"cc",
"libc",
2023-01-12 00:35:48 +03:00
"pkg-config",
2018-02-21 13:37:31 +03:00
]