martin/Cargo.lock

4156 lines
99 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",
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot",
"pin-project-lite",
"smallvec",
"tokio",
"tokio-util",
]
2020-09-27 11:31:53 +03:00
[[package]]
name = "actix-codec"
2023-05-16 21:12:57 +03:00
version = "0.5.1"
2020-09-27 11:31:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 21:12:57 +03:00
checksum = "617a8268e3537fe1d8c9ead925fca49ef6400927ee7bc26750e90ecee14ce4b8"
2020-09-27 11:31:53 +03:00
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
2023-05-16 21:12:57 +03:00
"tracing",
]
[[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",
chore(deps): Bump postgres-protocol from 0.6.4 to 0.6.5 (#621) Bumps [postgres-protocol](https://github.com/sfackler/rust-postgres) from 0.6.4 to 0.6.5. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-postgres/commit/a46796798aff0ab30e21abe9160bf1246b354626"><code>a467967</code></a> Release postgres-protocol v0.6.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/5be97d9559ff7077eb77486ca2c789907f58ff9c"><code>5be97d9</code></a> Release postgres-types v0.2.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/39fa1ad39e2125c55559a5ebe6a9ba0c6c911f8c"><code>39fa1ad</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1003">#1003</a> from sfackler/dependabot/cargo/socket2-0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/9c0d2dddc43b6137ae5bb0a540b3442b33565fa4"><code>9c0d2dd</code></a> Update ci.yml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a205d23141bb389693bf27a7e8233b5db072a7f5"><code>a205d23</code></a> Update Cargo.toml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/58f06610cc9e0437c7779ce7dad234fa7a2241c3"><code>58f0661</code></a> Update socket2 requirement from 0.4 to 0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/c85b2c1dbbd12e5fdb6d6406c356aac0eac58432"><code>c85b2c1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1007">#1007</a> from pH14/add-tcp-user-timeout</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/62a443222c8f660438251ef17cb2ca088f48e207"><code>62a4432</code></a> use correct error type</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a9967c05ff40de34e1471bf28cd956e756d1f6f9"><code>a9967c0</code></a> docs: mention sys default if 0</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/ee5a139028f9f470f4adae61d80e0404fe310ab2"><code>ee5a139</code></a> add in to param parsing; update doc</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.6.4...postgres-protocol-v0.6.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postgres-protocol&package-manager=cargo&previous-version=0.6.4&new-version=0.6.5)](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-28 07:34:09 +03:00
"base64",
2023-07-03 13:43:29 +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-07-21 05:56:50 +03:00
"zstd 0.12.4",
]
[[package]]
name = "actix-macros"
2023-07-21 05:56:50 +03:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
dependencies = [
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
[[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",
2023-04-04 16:25:50 +03:00
"socket2 0.4.9",
"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",
2023-04-04 16:25:50 +03:00
"socket2 0.4.9",
"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
]
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
[[package]]
name = "addr2line"
2023-07-03 13:43:29 +03:00
version = "0.20.0"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
dependencies = [
"gimli",
]
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"
2023-06-04 20:10:53 +03:00
version = "1.0.2"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-04 20:10:53 +03:00
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
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",
]
2023-06-13 06:05:54 +03:00
[[package]]
name = "allocator-api2"
2023-07-17 05:21:54 +03:00
version = "0.2.16"
2023-06-13 06:05:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
2023-06-13 06:05:54 +03:00
[[package]]
name = "anes"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
2023-04-03 05:06:55 +03:00
[[package]]
name = "anstream"
2023-05-02 04:04:24 +03:00
version = "0.3.2"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 04:04:24 +03:00
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
2023-04-03 05:06:55 +03:00
dependencies = [
"anstyle",
"anstyle-parse",
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
"anstyle-query",
2023-04-03 05:06:55 +03:00
"anstyle-wincon",
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
"colorchoice",
2023-04-03 05:06:55 +03:00
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.1"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
2023-04-03 05:06:55 +03:00
[[package]]
name = "anstyle-parse"
version = "0.2.1"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
2023-04-03 05:06:55 +03:00
dependencies = [
"utf8parse",
]
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
2023-04-03 05:06:55 +03:00
[[package]]
name = "anstyle-wincon"
2023-05-02 04:04:24 +03:00
version = "1.0.1"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 04:04:24 +03:00
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
2023-04-03 05:06:55 +03:00
dependencies = [
"anstyle",
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
"windows-sys 0.48.0",
2023-04-03 05:06:55 +03:00
]
[[package]]
name = "anyhow"
2023-07-17 05:21:54 +03:00
version = "1.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "arrayref"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
version = "0.7.4"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "assert_fs"
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f070617a68e5c2ed5d06ee8dd620ee18fb72b99f6c094bed34cf8ab07c875b48"
dependencies = [
"anstyle",
"doc-comment",
"globwalk",
"predicates",
"predicates-core",
"predicates-tree",
"tempfile",
]
[[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-03-22 07:47:14 +03:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
2018-01-19 14:06:01 +03:00
[[package]]
name = "async-trait"
chore(deps): Bump async-trait from 0.1.72 to 0.1.73 (#805) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.72 to 0.1.73. <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.73</h2> <ul> <li>Prevent generated code from triggering ignored_unit_patterns pedantic clippy lint</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f07c8568702978c72d0c282f719a4649065ac517"><code>f07c856</code></a> Release 0.1.73</li> <li><a href="https://github.com/dtolnay/async-trait/commit/f12f3717e6ba9428c4d590e93b69d837a332e72d"><code>f12f371</code></a> Resolve ignored_unit_patterns pedantic clippy lint in test suite</li> <li><a href="https://github.com/dtolnay/async-trait/commit/a71e0664c2de7b1ced525ae4b26b43a017505247"><code>a71e066</code></a> Resolve ignored_unit_patterns pedantic clippy lint in generated code</li> <li><a href="https://github.com/dtolnay/async-trait/commit/7d4e192c7dbd829d8fc268ed6d82dadc28b28a07"><code>7d4e192</code></a> Update ui test suite to nightly-2023-08-10</li> <li><a href="https://github.com/dtolnay/async-trait/commit/47565d9ff6016b9cbfa49dce419cf865e29c9166"><code>47565d9</code></a> Revert &quot;Temporarily disable -Zrandomize-layout due to rustc ICE&quot;</li> <li><a href="https://github.com/dtolnay/async-trait/commit/72bd72b000494cd51035af12532095dfb23f68f0"><code>72bd72b</code></a> Temporarily disable -Zrandomize-layout due to rustc ICE</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.72...0.1.73">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.72&new-version=0.1.73)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-14 06:01:26 +03:00
version = "0.1.73"
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.72 to 0.1.73 (#805) Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.72 to 0.1.73. <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.73</h2> <ul> <li>Prevent generated code from triggering ignored_unit_patterns pedantic clippy lint</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/async-trait/commit/f07c8568702978c72d0c282f719a4649065ac517"><code>f07c856</code></a> Release 0.1.73</li> <li><a href="https://github.com/dtolnay/async-trait/commit/f12f3717e6ba9428c4d590e93b69d837a332e72d"><code>f12f371</code></a> Resolve ignored_unit_patterns pedantic clippy lint in test suite</li> <li><a href="https://github.com/dtolnay/async-trait/commit/a71e0664c2de7b1ced525ae4b26b43a017505247"><code>a71e066</code></a> Resolve ignored_unit_patterns pedantic clippy lint in generated code</li> <li><a href="https://github.com/dtolnay/async-trait/commit/7d4e192c7dbd829d8fc268ed6d82dadc28b28a07"><code>7d4e192</code></a> Update ui test suite to nightly-2023-08-10</li> <li><a href="https://github.com/dtolnay/async-trait/commit/47565d9ff6016b9cbfa49dce419cf865e29c9166"><code>47565d9</code></a> Revert &quot;Temporarily disable -Zrandomize-layout due to rustc ICE&quot;</li> <li><a href="https://github.com/dtolnay/async-trait/commit/72bd72b000494cd51035af12532095dfb23f68f0"><code>72bd72b</code></a> Temporarily disable -Zrandomize-layout due to rustc ICE</li> <li>See full diff in <a href="https://github.com/dtolnay/async-trait/compare/0.1.72...0.1.73">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.72&new-version=0.1.73)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-14 06:01:26 +03:00
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
2018-01-19 14:06:01 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
2018-01-19 14:06:01 +03:00
]
[[package]]
name = "atoi"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
dependencies = [
"num-traits",
]
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
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
[[package]]
name = "backtrace"
2023-07-03 13:43:29 +03:00
version = "0.3.68"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2023-07-03 13:43:29 +03:00
"miniz_oxide",
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
"object",
"rustc-demangle",
]
2023-01-23 09:48:53 +03:00
[[package]]
name = "base64"
2023-05-25 19:01:35 +03:00
version = "0.21.2"
2023-01-23 09:48:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 19:01:35 +03:00
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
2023-01-23 09:48:53 +03:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-03 13:43:29 +03:00
[[package]]
name = "bitflags"
version = "2.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
dependencies = [
"serde",
]
2023-07-03 13:43:29 +03:00
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "bitvec"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
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
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "bstr"
2023-07-06 03:56:23 +03:00
version = "1.6.0"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 03:56:23 +03:00
checksum = "6798148dccfbff0fae41c7574d2fa8f1ef3492fba0face179de5d8d447d67b05"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
dependencies = [
"memchr",
"serde",
]
[[package]]
name = "bumpalo"
2023-05-23 02:04:55 +03:00
version = "3.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 02:04:55 +03:00
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "bytemuck"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea"
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-08-08 22:33:30 +03:00
version = "1.0.82"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01"
dependencies = [
"jobserver",
2023-08-02 04:39:24 +03:00
"libc",
]
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"
2023-05-09 11:39:31 +03:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:39:31 +03:00
checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926"
dependencies = [
"ciborium-io",
"ciborium-ll",
"serde",
]
[[package]]
name = "ciborium-io"
2023-05-09 11:39:31 +03:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:39:31 +03:00
checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656"
[[package]]
name = "ciborium-ll"
2023-05-09 11:39:31 +03:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:39:31 +03:00
checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b"
dependencies = [
"ciborium-io",
"half",
]
[[package]]
name = "clap"
chore(deps): Bump clap from 4.3.19 to 4.3.21 (#797) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.19 to 4.3.21. <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.3.21</h2> <h2>[4.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>v4.3.20</h2> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> <li><code>Command::mut_args</code> for modifying all arguments en masse</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.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li><code>Command::mut_args</code> for modifying all arguments en masse</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/ee1388c0a31fcf0f60a7a93b70e1b20058df6832"><code>ee1388c</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/390436681ab16be6af837fd1e4c255f70d09425f"><code>3904366</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/3156e1a35caf61493801bdcf692ea0e6513d9dff"><code>3156e1a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5066">#5066</a> from 9999years/export-trymapvalueparser</li> <li><a href="https://github.com/clap-rs/clap/commit/da1914156043a3933db265a0f1bf4c8ec03296bb"><code>da19141</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/b96cbafcbe1ae0f17a2ee8b46a168f5b3787cd45"><code>b96cbaf</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/174f12c7f825c9114a87bd34c4e2839fe0403b62"><code>174f12c</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fe04b3cc4ef75cce2701580a7485bdf7a6a4d740"><code>fe04b3c</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5056">#5056</a> from ModProg/dynamic-completions-help</li> <li><a href="https://github.com/clap-rs/clap/commit/aa3f47c23922a8f6e7d462b65e90f3bbf47b1398"><code>aa3f47c</code></a> test(complete): Help for possible value</li> <li><a href="https://github.com/clap-rs/clap/commit/65b9c2b37d72ef4fee2010ed04cc880811fd6fe2"><code>65b9c2b</code></a> test(complete): Helper for asserting dynamic completions</li> <li><a href="https://github.com/clap-rs/clap/commit/c86172e8911305fe5b64cae62e43bfc566c238cd"><code>c86172e</code></a> feat: Export <code>builder::TryMapValueParser</code></li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.3.19...v4.3.21">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.3.19&new-version=4.3.21)](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-08-08 05:41:57 +03:00
version = "4.3.21"
2023-03-28 06:14:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.3.19 to 4.3.21 (#797) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.19 to 4.3.21. <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.3.21</h2> <h2>[4.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>v4.3.20</h2> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> <li><code>Command::mut_args</code> for modifying all arguments en masse</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.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li><code>Command::mut_args</code> for modifying all arguments en masse</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/ee1388c0a31fcf0f60a7a93b70e1b20058df6832"><code>ee1388c</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/390436681ab16be6af837fd1e4c255f70d09425f"><code>3904366</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/3156e1a35caf61493801bdcf692ea0e6513d9dff"><code>3156e1a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5066">#5066</a> from 9999years/export-trymapvalueparser</li> <li><a href="https://github.com/clap-rs/clap/commit/da1914156043a3933db265a0f1bf4c8ec03296bb"><code>da19141</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/b96cbafcbe1ae0f17a2ee8b46a168f5b3787cd45"><code>b96cbaf</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/174f12c7f825c9114a87bd34c4e2839fe0403b62"><code>174f12c</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fe04b3cc4ef75cce2701580a7485bdf7a6a4d740"><code>fe04b3c</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5056">#5056</a> from ModProg/dynamic-completions-help</li> <li><a href="https://github.com/clap-rs/clap/commit/aa3f47c23922a8f6e7d462b65e90f3bbf47b1398"><code>aa3f47c</code></a> test(complete): Help for possible value</li> <li><a href="https://github.com/clap-rs/clap/commit/65b9c2b37d72ef4fee2010ed04cc880811fd6fe2"><code>65b9c2b</code></a> test(complete): Helper for asserting dynamic completions</li> <li><a href="https://github.com/clap-rs/clap/commit/c86172e8911305fe5b64cae62e43bfc566c238cd"><code>c86172e</code></a> feat: Export <code>builder::TryMapValueParser</code></li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.3.19...v4.3.21">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.3.19&new-version=4.3.21)](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-08-08 05:41:57 +03:00
checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd"
2023-03-28 06:14:58 +03:00
dependencies = [
chore(deps): Bump clap from 4.1.13 to 4.1.14 (#620) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.13 to 4.1.14. <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.14</h2> <h2>[4.1.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</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.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/285265365615522ae473036488de0d2bf18b0500"><code>2852653</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/2bb414637417a7d0c71d3f55d8eb3ef715c28bb6"><code>2bb4146</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/765c2e18f5ccee16a24235df727812898da9fe6f"><code>765c2e1</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/6696513dec0e23b88af93754d51e92eacc2e8a29"><code>6696513</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4796">#4796</a> from epage/lex</li> <li><a href="https://github.com/clap-rs/clap/commit/a916daad57120d793219e45278e43746c7640dcb"><code>a916daa</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4795">#4795</a> from epage/required_group</li> <li><a href="https://github.com/clap-rs/clap/commit/627a94f5029dfe0152130ff66ba64c2a8fc174d1"><code>627a94f</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4794">#4794</a> from epage/osstr</li> <li><a href="https://github.com/clap-rs/clap/commit/9712987b8059ffb5ce5ba2f079f0c29a606e4a63"><code>9712987</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4791">#4791</a> from epage/builder</li> <li><a href="https://github.com/clap-rs/clap/commit/615c1dc6a095f9e24a670c0f723a54ecf768244d"><code>615c1dc</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4790">#4790</a> from epage/doc</li> <li><a href="https://github.com/clap-rs/clap/commit/57d1c39dc530eeaf0629addaae6e7ad9d0ab8c50"><code>57d1c39</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4789">#4789</a> from mochi-sann/fix-clap_ocmplete-example-doc</li> <li><a href="https://github.com/clap-rs/clap/commit/7c6cf8147694c09b4ed8137f19382483b148e72f"><code>7c6cf81</code></a> docs(clap_complete): The file name of the command in the clap_complete exampl...</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.13...v4.1.14">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.13&new-version=4.1.14)](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-28 07:32:38 +03:00
"clap_builder",
"clap_derive",
"once_cell",
chore(deps): Bump clap from 4.1.13 to 4.1.14 (#620) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.13 to 4.1.14. <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.14</h2> <h2>[4.1.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</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.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/285265365615522ae473036488de0d2bf18b0500"><code>2852653</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/2bb414637417a7d0c71d3f55d8eb3ef715c28bb6"><code>2bb4146</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/765c2e18f5ccee16a24235df727812898da9fe6f"><code>765c2e1</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/6696513dec0e23b88af93754d51e92eacc2e8a29"><code>6696513</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4796">#4796</a> from epage/lex</li> <li><a href="https://github.com/clap-rs/clap/commit/a916daad57120d793219e45278e43746c7640dcb"><code>a916daa</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4795">#4795</a> from epage/required_group</li> <li><a href="https://github.com/clap-rs/clap/commit/627a94f5029dfe0152130ff66ba64c2a8fc174d1"><code>627a94f</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4794">#4794</a> from epage/osstr</li> <li><a href="https://github.com/clap-rs/clap/commit/9712987b8059ffb5ce5ba2f079f0c29a606e4a63"><code>9712987</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4791">#4791</a> from epage/builder</li> <li><a href="https://github.com/clap-rs/clap/commit/615c1dc6a095f9e24a670c0f723a54ecf768244d"><code>615c1dc</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4790">#4790</a> from epage/doc</li> <li><a href="https://github.com/clap-rs/clap/commit/57d1c39dc530eeaf0629addaae6e7ad9d0ab8c50"><code>57d1c39</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4789">#4789</a> from mochi-sann/fix-clap_ocmplete-example-doc</li> <li><a href="https://github.com/clap-rs/clap/commit/7c6cf8147694c09b4ed8137f19382483b148e72f"><code>7c6cf81</code></a> docs(clap_complete): The file name of the command in the clap_complete exampl...</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.13...v4.1.14">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.13&new-version=4.1.14)](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-28 07:32:38 +03:00
]
[[package]]
name = "clap_builder"
chore(deps): Bump clap from 4.3.19 to 4.3.21 (#797) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.19 to 4.3.21. <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.3.21</h2> <h2>[4.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>v4.3.20</h2> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> <li><code>Command::mut_args</code> for modifying all arguments en masse</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.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li><code>Command::mut_args</code> for modifying all arguments en masse</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/ee1388c0a31fcf0f60a7a93b70e1b20058df6832"><code>ee1388c</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/390436681ab16be6af837fd1e4c255f70d09425f"><code>3904366</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/3156e1a35caf61493801bdcf692ea0e6513d9dff"><code>3156e1a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5066">#5066</a> from 9999years/export-trymapvalueparser</li> <li><a href="https://github.com/clap-rs/clap/commit/da1914156043a3933db265a0f1bf4c8ec03296bb"><code>da19141</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/b96cbafcbe1ae0f17a2ee8b46a168f5b3787cd45"><code>b96cbaf</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/174f12c7f825c9114a87bd34c4e2839fe0403b62"><code>174f12c</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fe04b3cc4ef75cce2701580a7485bdf7a6a4d740"><code>fe04b3c</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5056">#5056</a> from ModProg/dynamic-completions-help</li> <li><a href="https://github.com/clap-rs/clap/commit/aa3f47c23922a8f6e7d462b65e90f3bbf47b1398"><code>aa3f47c</code></a> test(complete): Help for possible value</li> <li><a href="https://github.com/clap-rs/clap/commit/65b9c2b37d72ef4fee2010ed04cc880811fd6fe2"><code>65b9c2b</code></a> test(complete): Helper for asserting dynamic completions</li> <li><a href="https://github.com/clap-rs/clap/commit/c86172e8911305fe5b64cae62e43bfc566c238cd"><code>c86172e</code></a> feat: Export <code>builder::TryMapValueParser</code></li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.3.19...v4.3.21">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.3.19&new-version=4.3.21)](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-08-08 05:41:57 +03:00
version = "4.3.21"
chore(deps): Bump clap from 4.1.13 to 4.1.14 (#620) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.13 to 4.1.14. <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.14</h2> <h2>[4.1.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</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.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/285265365615522ae473036488de0d2bf18b0500"><code>2852653</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/2bb414637417a7d0c71d3f55d8eb3ef715c28bb6"><code>2bb4146</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/765c2e18f5ccee16a24235df727812898da9fe6f"><code>765c2e1</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/6696513dec0e23b88af93754d51e92eacc2e8a29"><code>6696513</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4796">#4796</a> from epage/lex</li> <li><a href="https://github.com/clap-rs/clap/commit/a916daad57120d793219e45278e43746c7640dcb"><code>a916daa</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4795">#4795</a> from epage/required_group</li> <li><a href="https://github.com/clap-rs/clap/commit/627a94f5029dfe0152130ff66ba64c2a8fc174d1"><code>627a94f</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4794">#4794</a> from epage/osstr</li> <li><a href="https://github.com/clap-rs/clap/commit/9712987b8059ffb5ce5ba2f079f0c29a606e4a63"><code>9712987</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4791">#4791</a> from epage/builder</li> <li><a href="https://github.com/clap-rs/clap/commit/615c1dc6a095f9e24a670c0f723a54ecf768244d"><code>615c1dc</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4790">#4790</a> from epage/doc</li> <li><a href="https://github.com/clap-rs/clap/commit/57d1c39dc530eeaf0629addaae6e7ad9d0ab8c50"><code>57d1c39</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4789">#4789</a> from mochi-sann/fix-clap_ocmplete-example-doc</li> <li><a href="https://github.com/clap-rs/clap/commit/7c6cf8147694c09b4ed8137f19382483b148e72f"><code>7c6cf81</code></a> docs(clap_complete): The file name of the command in the clap_complete exampl...</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.13...v4.1.14">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.13&new-version=4.1.14)](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-28 07:32:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.3.19 to 4.3.21 (#797) Bumps [clap](https://github.com/clap-rs/clap) from 4.3.19 to 4.3.21. <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.3.21</h2> <h2>[4.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>v4.3.20</h2> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> <li><code>Command::mut_args</code> for modifying all arguments en masse</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.3.21] - 2023-08-08</h2> <h3>Features</h3> <ul> <li>Expose <code>TryMapValueParser</code> so the type can be named</li> </ul> <h2>[4.3.20] - 2023-08-08</h2> <h3>Features</h3> <ul> <li><code>Command::mut_args</code> for modifying all arguments en masse</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/ee1388c0a31fcf0f60a7a93b70e1b20058df6832"><code>ee1388c</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/390436681ab16be6af837fd1e4c255f70d09425f"><code>3904366</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/3156e1a35caf61493801bdcf692ea0e6513d9dff"><code>3156e1a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5066">#5066</a> from 9999years/export-trymapvalueparser</li> <li><a href="https://github.com/clap-rs/clap/commit/da1914156043a3933db265a0f1bf4c8ec03296bb"><code>da19141</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/b96cbafcbe1ae0f17a2ee8b46a168f5b3787cd45"><code>b96cbaf</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/174f12c7f825c9114a87bd34c4e2839fe0403b62"><code>174f12c</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fe04b3cc4ef75cce2701580a7485bdf7a6a4d740"><code>fe04b3c</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/5056">#5056</a> from ModProg/dynamic-completions-help</li> <li><a href="https://github.com/clap-rs/clap/commit/aa3f47c23922a8f6e7d462b65e90f3bbf47b1398"><code>aa3f47c</code></a> test(complete): Help for possible value</li> <li><a href="https://github.com/clap-rs/clap/commit/65b9c2b37d72ef4fee2010ed04cc880811fd6fe2"><code>65b9c2b</code></a> test(complete): Helper for asserting dynamic completions</li> <li><a href="https://github.com/clap-rs/clap/commit/c86172e8911305fe5b64cae62e43bfc566c238cd"><code>c86172e</code></a> feat: Export <code>builder::TryMapValueParser</code></li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.3.19...v4.3.21">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.3.19&new-version=4.3.21)](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-08-08 05:41:57 +03:00
checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa"
chore(deps): Bump clap from 4.1.13 to 4.1.14 (#620) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.13 to 4.1.14. <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.14</h2> <h2>[4.1.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</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.14] - 2023-03-28</h2> <h3>Features</h3> <ul> <li><em>(derive)</em> <code>#[group]</code> raw attribute support</li> </ul> <h3>Performance</h3> <ul> <li><em>(derive)</em> <code>clap_builder</code> was pulled out of <code>clap</code> so it could build in parallel to <code>clap_derive</code></li> <li><code>os_str_bytes</code> dependency was removed for faster builds and smaller binaries</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/285265365615522ae473036488de0d2bf18b0500"><code>2852653</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/2bb414637417a7d0c71d3f55d8eb3ef715c28bb6"><code>2bb4146</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/765c2e18f5ccee16a24235df727812898da9fe6f"><code>765c2e1</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/6696513dec0e23b88af93754d51e92eacc2e8a29"><code>6696513</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4796">#4796</a> from epage/lex</li> <li><a href="https://github.com/clap-rs/clap/commit/a916daad57120d793219e45278e43746c7640dcb"><code>a916daa</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4795">#4795</a> from epage/required_group</li> <li><a href="https://github.com/clap-rs/clap/commit/627a94f5029dfe0152130ff66ba64c2a8fc174d1"><code>627a94f</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4794">#4794</a> from epage/osstr</li> <li><a href="https://github.com/clap-rs/clap/commit/9712987b8059ffb5ce5ba2f079f0c29a606e4a63"><code>9712987</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4791">#4791</a> from epage/builder</li> <li><a href="https://github.com/clap-rs/clap/commit/615c1dc6a095f9e24a670c0f723a54ecf768244d"><code>615c1dc</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4790">#4790</a> from epage/doc</li> <li><a href="https://github.com/clap-rs/clap/commit/57d1c39dc530eeaf0629addaae6e7ad9d0ab8c50"><code>57d1c39</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4789">#4789</a> from mochi-sann/fix-clap_ocmplete-example-doc</li> <li><a href="https://github.com/clap-rs/clap/commit/7c6cf8147694c09b4ed8137f19382483b148e72f"><code>7c6cf81</code></a> docs(clap_complete): The file name of the command in the clap_complete exampl...</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.1.13...v4.1.14">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.13&new-version=4.1.14)](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-28 07:32:38 +03:00
dependencies = [
2023-04-03 05:06:55 +03:00
"anstream",
"anstyle",
chore(deps): Bump criterion from 0.4.0 to 0.5.0 (#673) Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bheisler/criterion.rs/commit/4a560cb8d8b4cefc4819a6489f0ce0540663968d"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/3e2849ebf86e27507f783a20647a0fc81c6bfcc7"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/637010e50d3819839cd45d9f5b281c169573416a"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/39d7e2f9546981d87ae195fe7c68f778afdb66a4"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/8ab2752ccfeece50347c81866a4185f29fd978a2"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a2112308ef8e3d8fe5a8da41ccb0fba3d5d460c4"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a844eb226bb814e6a4e8b35b3b91c74f22ad535b"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2f5360737807cbe90d149db6199783236f0ef634"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/86dcd7d323799043c100dbf358409e986a872a11"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2942aee124e433213f0e9b917bb730bcdc7df6f3"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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>
2023-05-24 06:32:10 +03:00
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2023-07-17 05:21:54 +03:00
version = "4.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
[[package]]
name = "clap_lex"
chore(deps): Bump clap from 4.2.7 to 4.3.0 (#669) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.7 to 4.3.0. <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.3.0</h2> <h2>[4.3.0] - 2023-05-19</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Allow multiple, value-terminated, positional arguments</li> <li><em>(assert)</em> Clear up language on <code>last</code> assertion</li> <li><em>(parser)</em> Correctly assign values to arguments when using multiple, value-termianted, positional arguments</li> <li><em>(parser)</em> Ensure <code>value_terminator</code> has higher precedence than <code>allow_hyphen_values</code></li> <li><em>(help)</em> Only use next-line-help on subcommand list when explicitly specified, not just with <code>--help</code></li> <li><em>(help)</em> Correctly align possible values list</li> <li><em>(help)</em> Don't waste code, vertical space in moving possible value descriptions to next line</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.3.0] - 2023-05-19</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Allow multiple, value-terminated, positional arguments</li> <li><em>(assert)</em> Clear up language on <code>last</code> assertion</li> <li><em>(parser)</em> Correctly assign values to arguments when using multiple, value-termianted, positional arguments</li> <li><em>(parser)</em> Ensure <code>value_terminator</code> has higher precedence than <code>allow_hyphen_values</code></li> <li><em>(help)</em> Only use next-line-help on subcommand list when explicitly specified, not just with <code>--help</code></li> <li><em>(help)</em> Correctly align possible values list</li> <li><em>(help)</em> Don't waste code, vertical space in moving possible value descriptions to next line</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/9c3dc187cb47dd437cdb6fee045e42dc8146e9d6"><code>9c3dc18</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/077cf66fdc9b37ad97e0de4ef6591a871bea7449"><code>077cf66</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/5047bb40bd74457215e524db2039211d362cc6e9"><code>5047bb4</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/22d33077274227190e61d72e52469611a15457d1"><code>22d3307</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fd63feb7036cc192f791a29527d793be6fc446af"><code>fd63feb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4926">#4926</a> from epage/unsafe</li> <li><a href="https://github.com/clap-rs/clap/commit/3db35249438e6ffc7f2ef2776c7faa3de54153ba"><code>3db3524</code></a> fix(lex)!: Remove unsafe safe method</li> <li><a href="https://github.com/clap-rs/clap/commit/8507a1dba31ef827476ab9ba8fff09ab6ce6df9b"><code>8507a1d</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4925">#4925</a> from epage/term</li> <li><a href="https://github.com/clap-rs/clap/commit/a360fd8ac0a749c317aa3cf6bca917ddd9d70c3f"><code>a360fd8</code></a> test(parser): Verify value terminator precedence</li> <li><a href="https://github.com/clap-rs/clap/commit/d5bea65711a2d47275d7dccee782e35d7784ea04"><code>d5bea65</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4924">#4924</a> from epage/term2</li> <li><a href="https://github.com/clap-rs/clap/commit/e1db168d69cd1dcde5e31715f983400509f81af4"><code>e1db168</code></a> fix(parser): Ensure terminated positionals are assigned correctly</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.7...clap_complete-v4.3.0">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.2.7&new-version=4.3.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>
2023-05-22 18:56:48 +03:00
version = "0.5.0"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.2.7 to 4.3.0 (#669) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.7 to 4.3.0. <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.3.0</h2> <h2>[4.3.0] - 2023-05-19</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Allow multiple, value-terminated, positional arguments</li> <li><em>(assert)</em> Clear up language on <code>last</code> assertion</li> <li><em>(parser)</em> Correctly assign values to arguments when using multiple, value-termianted, positional arguments</li> <li><em>(parser)</em> Ensure <code>value_terminator</code> has higher precedence than <code>allow_hyphen_values</code></li> <li><em>(help)</em> Only use next-line-help on subcommand list when explicitly specified, not just with <code>--help</code></li> <li><em>(help)</em> Correctly align possible values list</li> <li><em>(help)</em> Don't waste code, vertical space in moving possible value descriptions to next line</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.3.0] - 2023-05-19</h2> <h3>Fixes</h3> <ul> <li><em>(assert)</em> Allow multiple, value-terminated, positional arguments</li> <li><em>(assert)</em> Clear up language on <code>last</code> assertion</li> <li><em>(parser)</em> Correctly assign values to arguments when using multiple, value-termianted, positional arguments</li> <li><em>(parser)</em> Ensure <code>value_terminator</code> has higher precedence than <code>allow_hyphen_values</code></li> <li><em>(help)</em> Only use next-line-help on subcommand list when explicitly specified, not just with <code>--help</code></li> <li><em>(help)</em> Correctly align possible values list</li> <li><em>(help)</em> Don't waste code, vertical space in moving possible value descriptions to next line</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/9c3dc187cb47dd437cdb6fee045e42dc8146e9d6"><code>9c3dc18</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/077cf66fdc9b37ad97e0de4ef6591a871bea7449"><code>077cf66</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/5047bb40bd74457215e524db2039211d362cc6e9"><code>5047bb4</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/22d33077274227190e61d72e52469611a15457d1"><code>22d3307</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/fd63feb7036cc192f791a29527d793be6fc446af"><code>fd63feb</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4926">#4926</a> from epage/unsafe</li> <li><a href="https://github.com/clap-rs/clap/commit/3db35249438e6ffc7f2ef2776c7faa3de54153ba"><code>3db3524</code></a> fix(lex)!: Remove unsafe safe method</li> <li><a href="https://github.com/clap-rs/clap/commit/8507a1dba31ef827476ab9ba8fff09ab6ce6df9b"><code>8507a1d</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4925">#4925</a> from epage/term</li> <li><a href="https://github.com/clap-rs/clap/commit/a360fd8ac0a749c317aa3cf6bca917ddd9d70c3f"><code>a360fd8</code></a> test(parser): Verify value terminator precedence</li> <li><a href="https://github.com/clap-rs/clap/commit/d5bea65711a2d47275d7dccee782e35d7784ea04"><code>d5bea65</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4924">#4924</a> from epage/term2</li> <li><a href="https://github.com/clap-rs/clap/commit/e1db168d69cd1dcde5e31715f983400509f81af4"><code>e1db168</code></a> fix(parser): Ensure terminated positionals are assigned correctly</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.7...clap_complete-v4.3.0">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.2.7&new-version=4.3.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>
2023-05-22 18:56:48 +03:00
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
2023-04-03 05:06:55 +03:00
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2023-04-03 05:06:55 +03:00
[[package]]
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
name = "colorchoice"
2023-04-03 05:06:55 +03:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump clap from 4.2.1 to 4.2.2 (#637) Bumps [clap](https://github.com/clap-rs/clap) from 4.2.1 to 4.2.2. <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.2.2</h2> <h2>[4.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</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.2.2] - 2023-04-13</h2> <h3>Internal</h3> <ul> <li>Update dependencies</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/clap-rs/clap/commit/6f409544ec49738496eb100c6fec19dbf8d22d02"><code>6f40954</code></a> chore: Release</li> <li><a href="https://github.com/clap-rs/clap/commit/6d5394dfc1a9fbfb90ab88fc7332a1ecd2cae6e1"><code>6d5394d</code></a> docs: Update changelog</li> <li><a href="https://github.com/clap-rs/clap/commit/d7f742ab87b401835efc8c70c34215538943ec66"><code>d7f742a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4832">#4832</a> from epage/update</li> <li><a href="https://github.com/clap-rs/clap/commit/9c85e1b295c5b9181bdb3a402bcedcce2f0f272e"><code>9c85e1b</code></a> chore: Update anstyle/anstream</li> <li><a href="https://github.com/clap-rs/clap/commit/0deb42265de1868eb9cb9e3b4e8c78b703d1e52b"><code>0deb422</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4823">#4823</a> from epage/template</li> <li><a href="https://github.com/clap-rs/clap/commit/d34b51a2ede1e9ef007f2fe23110dc094d0e9d06"><code>d34b51a</code></a> Merge pull request <a href="https://redirect.github.com/clap-rs/clap/issues/4821">#4821</a> from Bfault/typo</li> <li><a href="https://github.com/clap-rs/clap/commit/13d79b767799e5fabafef65c2c2351d001c4e079"><code>13d79b7</code></a> Fix typo</li> <li><a href="https://github.com/clap-rs/clap/commit/feddd124b05c76d87ce0731f1074ad51292a274a"><code>feddd12</code></a> style: Move away from banned fns</li> <li><a href="https://github.com/clap-rs/clap/commit/d3d45e83441ba032d3524d06002b89fca22670b8"><code>d3d45e8</code></a> chore(pre): Mirror exclude in pre-commit</li> <li><a href="https://github.com/clap-rs/clap/commit/c99ef984de34d4dc2330a98e6c32d63f774e907c"><code>c99ef98</code></a> chore(ci): Remove allow-print-in-tests due to MSRV</li> <li>Additional commits viewable in <a href="https://github.com/clap-rs/clap/compare/v4.2.1...v4.2.2">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.2.1&new-version=4.2.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>
2023-04-14 06:25:16 +03:00
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
[[package]]
name = "const-oid"
2023-07-17 05:21:54 +03:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "795bc6e66a8e340f075fcf6227e417a2dc976b92b91f3cdc778bb858778b6747"
[[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"
2023-04-03 05:06:55 +03:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-03 05:06:55 +03:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2020-09-13 19:42:44 +03:00
[[package]]
2021-07-16 16:08:46 +03:00
name = "cpufeatures"
2023-07-06 03:56:23 +03:00
version = "0.2.9"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 03:56:23 +03:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
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"
2023-05-27 20:07:22 +03:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-27 20:07:22 +03:00
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
dependencies = [
"anes",
"cast",
"ciborium",
chore(deps): Bump criterion from 0.4.0 to 0.5.0 (#673) Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bheisler/criterion.rs/commit/4a560cb8d8b4cefc4819a6489f0ce0540663968d"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/3e2849ebf86e27507f783a20647a0fc81c6bfcc7"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/637010e50d3819839cd45d9f5b281c169573416a"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/39d7e2f9546981d87ae195fe7c68f778afdb66a4"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/8ab2752ccfeece50347c81866a4185f29fd978a2"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a2112308ef8e3d8fe5a8da41ccb0fba3d5d460c4"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a844eb226bb814e6a4e8b35b3b91c74f22ad535b"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2f5360737807cbe90d149db6199783236f0ef634"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/86dcd7d323799043c100dbf358409e986a872a11"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2942aee124e433213f0e9b917bb730bcdc7df6f3"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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>
2023-05-24 06:32:10 +03:00
"clap",
"criterion-plot",
2021-07-23 11:04:34 +03:00
"futures",
chore(deps): Bump criterion from 0.4.0 to 0.5.0 (#673) Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bheisler/criterion.rs/commit/4a560cb8d8b4cefc4819a6489f0ce0540663968d"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/3e2849ebf86e27507f783a20647a0fc81c6bfcc7"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/637010e50d3819839cd45d9f5b281c169573416a"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/39d7e2f9546981d87ae195fe7c68f778afdb66a4"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/8ab2752ccfeece50347c81866a4185f29fd978a2"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a2112308ef8e3d8fe5a8da41ccb0fba3d5d460c4"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a844eb226bb814e6a4e8b35b3b91c74f22ad535b"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2f5360737807cbe90d149db6199783236f0ef634"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/86dcd7d323799043c100dbf358409e986a872a11"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2942aee124e433213f0e9b917bb730bcdc7df6f3"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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>
2023-05-24 06:32:10 +03:00
"is-terminal",
"itertools 0.10.5",
"num-traits",
chore(deps): Bump criterion from 0.4.0 to 0.5.0 (#673) Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bheisler/criterion.rs/commit/4a560cb8d8b4cefc4819a6489f0ce0540663968d"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/3e2849ebf86e27507f783a20647a0fc81c6bfcc7"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/637010e50d3819839cd45d9f5b281c169573416a"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/39d7e2f9546981d87ae195fe7c68f778afdb66a4"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/8ab2752ccfeece50347c81866a4185f29fd978a2"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a2112308ef8e3d8fe5a8da41ccb0fba3d5d460c4"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a844eb226bb814e6a4e8b35b3b91c74f22ad535b"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2f5360737807cbe90d149db6199783236f0ef634"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/86dcd7d323799043c100dbf358409e986a872a11"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2942aee124e433213f0e9b917bb730bcdc7df6f3"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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>
2023-05-24 06:32:10 +03:00
"once_cell",
"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",
"itertools 0.10.5",
]
2019-02-04 11:53:06 +03:00
[[package]]
name = "crossbeam-channel"
2023-05-02 04:04:24 +03:00
version = "0.5.8"
2020-10-31 13:07:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 04:04:24 +03:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
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-06-13 06:05:54 +03:00
version = "0.9.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
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-06-13 06:05:54 +03:00
version = "0.8.16"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2017-10-09 14:29:03 +03:00
dependencies = [
"cfg-if",
2020-10-31 13:07:04 +03:00
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "crunch"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc013e70da3bfe5b552de26a1f34ecf67d61ea811251d2bf75c1324a1ecb425"
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"
chore(deps): Bump ctor from 0.2.3 to 0.2.4 (#760) Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.2.3 to 0.2.4. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mmastrac/rust-ctor/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ctor&package-manager=cargo&previous-version=0.2.3&new-version=0.2.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>
2023-07-13 06:21:53 +03:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump ctor from 0.2.3 to 0.2.4 (#760) Bumps [ctor](https://github.com/mmastrac/rust-ctor) from 0.2.3 to 0.2.4. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/mmastrac/rust-ctor/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ctor&package-manager=cargo&previous-version=0.2.3&new-version=0.2.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>
2023-07-13 06:21:53 +03:00
checksum = "1f34ba9a9bcb8645379e9de8cb3ecfcf4d1c85ba66d90deb3259206fa5aa193b"
dependencies = [
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "data-url"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d7439c3735f405729d52c3fbbe4de140eaf938a1fe47d227c27f8254d4302a5"
[[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",
]
[[package]]
name = "der"
2023-08-08 22:33:30 +03:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
dependencies = [
"const-oid",
"pem-rfc7468",
"zeroize",
]
2023-08-02 04:39:24 +03:00
[[package]]
name = "deranged"
2023-08-04 05:47:04 +03:00
version = "0.3.7"
2023-08-02 04:39:24 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 05:47:04 +03:00
checksum = "7684a49fb1af197853ef7b2ee694bc1f5b4179556f1e5710e1760c5db6f5e929"
2023-08-02 04:39:24 +03:00
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
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "difflib"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
2022-01-01 20:43:04 +03:00
[[package]]
name = "digest"
2023-05-23 02:04:55 +03:00
version = "0.10.7"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 02:04:55 +03:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2022-01-01 20:43:04 +03:00
dependencies = [
"block-buffer",
"const-oid",
2022-01-01 20:43:04 +03:00
"crypto-common",
"subtle",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "dotenvy"
2023-03-23 10:43:35 +03:00
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-23 10:43:35 +03:00
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
2018-03-13 14:32:09 +03:00
[[package]]
name = "either"
2023-07-24 06:39:17 +03:00
version = "1.9.0"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-24 06:39:17 +03:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
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-07-09 05:23:21 +03:00
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 05:23:21 +03:00
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
dependencies = [
"once_cell",
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
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 serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
[[package]]
name = "equivalent"
2023-07-17 05:21:54 +03:00
version = "1.0.1"
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +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",
]
2023-04-03 05:06:55 +03:00
[[package]]
name = "errno"
2023-08-02 04:39:24 +03:00
version = "0.3.2"
2023-04-03 05:06:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-02 04:39:24 +03:00
checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
2023-04-03 05:06:55 +03:00
dependencies = [
"errno-dragonfly",
"libc",
2023-04-08 09:38:52 +03:00
"windows-sys 0.48.0",
2023-04-03 05:06:55 +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-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "etcetera"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
dependencies = [
"cfg-if",
"home",
"windows-sys 0.48.0",
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "exitcode"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de853764b47027c2e862a995c34978ffa63c1501f2e15f987ba11bd4f9bba193"
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-07-21 05:56:50 +03:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "fdeflate"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
dependencies = [
"simd-adler32",
]
[[package]]
name = "filetime"
2023-08-06 05:11:53 +03:00
version = "0.2.22"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 05:11:53 +03:00
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
dependencies = [
"cfg-if",
"libc",
2023-08-06 05:11:53 +03:00
"redox_syscall",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"windows-sys 0.48.0",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "flate2"
chore(deps): Bump flate2 from 1.0.25 to 1.0.26 (#650) Bumps [flate2](https://github.com/rust-lang/flate2-rs) from 1.0.25 to 1.0.26. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-lang/flate2-rs/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flate2&package-manager=cargo&previous-version=1.0.25&new-version=1.0.26)](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-05-01 06:32:26 +03:00
version = "1.0.26"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump flate2 from 1.0.25 to 1.0.26 (#650) Bumps [flate2](https://github.com/rust-lang/flate2-rs) from 1.0.25 to 1.0.26. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-lang/flate2-rs/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flate2&package-manager=cargo&previous-version=1.0.25&new-version=1.0.26)](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-05-01 06:32:26 +03:00
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
2018-02-21 13:37:31 +03:00
dependencies = [
"crc32fast",
2023-07-03 13:43:29 +03:00
"miniz_oxide",
2018-02-21 13:37:31 +03:00
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "float-cmp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
[[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 0.9.8",
]
[[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
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "fontconfig-parser"
2023-08-04 05:47:04 +03:00
version = "0.5.3"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 05:47:04 +03:00
checksum = "674e258f4b5d2dcd63888c01c68413c51f565e8af99d2f7701c7b81d79ef41c4"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
dependencies = [
"roxmltree",
]
[[package]]
name = "fontdb"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af8d8cbea8f21307d7e84bca254772981296f058a1d36b461bf4d83a7499fc9e"
dependencies = [
"fontconfig-parser",
"log",
"memmap2",
"slotmap",
"tinyvec",
"ttf-parser 0.19.1",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +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"
2023-06-13 06:05:54 +03:00
version = "1.2.0"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2020-12-20 15:45:58 +03:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fs4"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47"
dependencies = [
"async-trait",
2023-08-06 05:11:53 +03:00
"rustix 0.38.7",
"tokio",
2023-05-09 11:39:31 +03:00
"windows-sys 0.48.0",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "funty"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
[[package]]
name = "futures"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
[[package]]
name = "futures-executor"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
dependencies = [
"futures-core",
"lock_api",
"parking_lot",
]
[[package]]
name = "futures-io"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-macro"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
[[package]]
name = "futures-sink"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
[[package]]
name = "futures-task"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
[[package]]
name = "futures-util"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump futures from 0.3.27 to 0.3.28 (#628) Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.27 to 0.3.28. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/releases">futures's releases</a>.</em></p> <blockquote> <h2>0.3.28</h2> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md">futures's changelog</a>.</em></p> <blockquote> <h1>0.3.28 - 2023-03-30</h1> <ul> <li>Update to syn 2. This raises MSRV of utility crates to 1.56. (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li>Fix bug in <code>FlattenUnordered</code> (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>, <a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/futures-rs/commit/1685f8bdabb8e7f007610f3494425aeabf28117d"><code>1685f8b</code></a> Release 0.3.28</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/206b12b05ba1db8d1ab4f61c1cef808838be1274"><code>206b12b</code></a> Update to syn 2 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2730">#2730</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/98e80d4d2863028a86a0c95616ad1efdaafd35d2"><code>98e80d4</code></a> Bump MSRV of utility crates to 1.56 (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2733">#2733</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a3f80e6b19315d24bde80eeefc595c614c9e0e9d"><code>a3f80e6</code></a> Fix unknown_lints and unused_imports warnings in test (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2732">#2732</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/3bee39695eae555346669e504af22d1b27f52bd9"><code>3bee396</code></a> SelectAll doesn't need pin-project (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2729">#2729</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/6a436ebd15fc2d69398b279a8d01ea51abf6750c"><code>6a436eb</code></a> Don't ignore empty state polling (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2728">#2728</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/94e020dac72530f487debd63dc7d6244763a7f6e"><code>94e020d</code></a> Use <code>Waker::will_wake()</code> to avoid a cloning op (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2723">#2723</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/a730a19c8f933254a9d571a153275e3d96391ab3"><code>a730a19</code></a> FlattenUnordered: always replace inner wakers (<a href="https://redirect.github.com/rust-lang/futures-rs/issues/2726">#2726</a>)</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/890f8934fdb89478f0610a388b3cd819656f4700"><code>890f893</code></a> Fix rustdoc warning</li> <li><a href="https://github.com/rust-lang/futures-rs/commit/4b86e46e40c89bbcd248c9d9204b345abf9101fd"><code>4b86e46</code></a> Use setup-cross-toolchain-action instead of cross</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/futures-rs/compare/0.3.27...0.3.28">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=futures&package-manager=cargo&previous-version=0.3.27&new-version=0.3.28)](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-31 06:29:03 +03:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
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"
2023-04-03 05:06:55 +03:00
version = "0.14.7"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-03 05:06:55 +03:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
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"
2023-06-13 06:05:54 +03:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "gif"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80792593675e051cf94a4b111980da2ba60d4a83e43e0048c5693baab3977045"
dependencies = [
"color_quant",
"weezl",
]
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
[[package]]
name = "gimli"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "globset"
2023-08-06 05:11:53 +03:00
version = "0.4.13"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 05:11:53 +03:00
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
dependencies = [
2023-07-17 05:21:54 +03:00
"aho-corasick",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "globwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93e3af942408868f6934a7b85134a3230832b9977cf66125df2f9edcfce4ddcc"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"ignore",
"walkdir",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "h2"
2023-07-03 13:43:29 +03:00
version = "0.3.20"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
2018-02-21 13:37:31 +03:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
"indexmap 1.9.3",
"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"
2023-05-16 21:12:57 +03:00
[[package]]
name = "hashbrown"
2023-06-13 06:05:54 +03:00
version = "0.14.0"
2023-05-16 21:12:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
dependencies = [
2023-05-16 21:12:57 +03:00
"ahash 0.8.3",
2023-06-13 06:05:54 +03:00
"allocator-api2",
]
[[package]]
name = "hashlink"
2023-06-13 06:05:54 +03:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
dependencies = [
2023-06-13 06:05:54 +03:00
"hashbrown 0.14.0",
]
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",
]
2023-02-06 08:37:40 +03:00
[[package]]
name = "hermit-abi"
2023-07-06 03:56:23 +03:00
version = "0.3.2"
2023-02-06 08:37:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 03:56:23 +03:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
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"
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
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]]
name = "home"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
"windows-sys 0.48.0",
]
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"
2023-06-13 06:05:54 +03:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "ignore"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
dependencies = [
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
[[package]]
name = "image"
version = "0.24.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "527909aa81e20ac3a44803521443a765550f09b5130c2c2fa1ea59c2f8f50a3a"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-rational",
"num-traits",
"png",
]
[[package]]
name = "imagesize"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029d73f573d8e8d63e6d5020011d3255b28c3ba85d6cf870a07184ed23de9284"
2018-03-13 14:32:09 +03:00
[[package]]
name = "indexmap"
2023-03-25 21:40:23 +03:00
version = "1.9.3"
2018-03-13 14:32:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 21:40:23 +03:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2023-05-16 21:12:57 +03:00
"hashbrown 0.12.3",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"rayon",
]
2018-03-13 14:32:09 +03:00
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
[[package]]
name = "indexmap"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
dependencies = [
"equivalent",
"hashbrown 0.14.0",
]
[[package]]
name = "indoc"
2023-07-17 05:21:54 +03:00
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "2c785eefb63ebd0e33416dfcb8d6da0bf27ce752843a45632a67bf10d4d4b5c4"
[[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 = "is-terminal"
2023-07-09 05:23:21 +03:00
version = "0.4.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-07-09 05:23:21 +03:00
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
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 num_cpus from 1.15.0 to 1.16.0 (#737) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.15.0 to 1.16.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.16.0</h2> <h2>Features</h2> <ul> <li>add support for AIX operating system</li> </ul> <h2>Fixes</h2> <ul> <li>update hermit-abi to 0.3.0</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mkroening"><code>@​mkroening</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/128">seanmonstar/num_cpus#128</a></li> <li><a href="https://github.com/ecnelises"><code>@​ecnelises</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/123">seanmonstar/num_cpus#123</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.16.0</h2> <h3>Features</h3> <ul> <li>add support for AIX operating system</li> </ul> <h3>Fixes</h3> <ul> <li>update hermit-abi to 0.3.0</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/7c03fc930cc47a9b94e8ca66ca44ef1a454c8f51"><code>7c03fc9</code></a> v1.16.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/cd76834c4f3d3a9d00115c26c20829febf4d92fc"><code>cd76834</code></a> add funding file</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/f3e70815f99bcca7611f6ac18d65cfe9965d23ad"><code>f3e7081</code></a> Support AIX operating system (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/123">#123</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/edf035ceeb6a71f0a2dd7ab6420a7f3a76812c2b"><code>edf035c</code></a> Update CI badges (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/132">#132</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/3b6e5f03178738967caebf5398aaff8e9167c6b6"><code>3b6e5f0</code></a> Bump hermit-abi to 0.3.0 and don't restrict hermit-abi architectures (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/128">#128</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.15.0...v1.16.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.15.0&new-version=1.16.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>
2023-07-01 00:32:29 +03:00
"hermit-abi",
2023-08-06 05:11:53 +03:00
"rustix 0.38.7",
2023-04-08 09:38:52 +03:00
"windows-sys 0.48.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",
]
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
2022-01-01 20:43:04 +03:00
[[package]]
name = "itoa"
2023-07-17 05:21:54 +03:00
version = "1.0.9"
2022-01-01 20:43:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
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",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "jpeg-decoder"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc0000e42512c92e31c2252315bda326620a4e034105e900c98ec492fa077b3e"
2017-09-30 13:55:44 +03:00
[[package]]
name = "js-sys"
2023-06-13 06:05:54 +03:00
version = "0.3.64"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
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
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "kurbo"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd85a5776cd9500c2e2059c8c76c3b01528566b7fcbaf8098b55a33fc298849b"
dependencies = [
"arrayvec",
]
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"
dependencies = [
"spin 0.5.2",
]
2018-01-18 13:42:06 +03:00
2017-09-30 13:55:44 +03:00
[[package]]
name = "libc"
2023-07-03 13:43:29 +03:00
version = "0.2.147"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "libdeflate-sys"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb6784b6b84b67d71b4307963d456a9c7c29f9b47c658f533e598de369e34277"
dependencies = [
"cc",
]
[[package]]
name = "libdeflater"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8e285aa6a046fd338b2592c16bee148b2b00789138ed6b7bb56bb13d585050d"
dependencies = [
"libdeflate-sys",
]
[[package]]
name = "libm"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
[[package]]
name = "libsqlite3-sys"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
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"
2023-07-03 13:43:29 +03:00
[[package]]
name = "linux-raw-sys"
2023-08-02 04:39:24 +03:00
version = "0.4.5"
2023-07-03 13:43:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-02 04:39:24 +03:00
checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
2023-07-03 13:43:29 +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"
2023-06-13 06:05:54 +03:00
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
dependencies = [
2022-05-03 12:12:54 +03:00
"autocfg",
"scopeguard",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "log"
chore(deps): Bump log from 0.4.18 to 0.4.19 (#711) Bumps [log](https://github.com/rust-lang/log) from 0.4.18 to 0.4.19. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/log/blob/master/CHANGELOG.md">log's changelog</a>.</em></p> <blockquote> <h2>[0.4.19] - 2023-06-10</h2> <ul> <li>Use target_has_atomic instead of the old atomic_cas cfg by <a href="https://github.com/GuillaumeGomez"><code>@​GuillaumeGomez</code></a> in <a href="https://redirect.github.com/rust-lang/log/pull/555">rust-lang/log#555</a></li> <li>Put MSRV into Cargo.toml by <a href="https://github.com/est31"><code>@​est31</code></a> in <a href="https://redirect.github.com/rust-lang/log/pull/557">rust-lang/log#557</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/log/commit/84ddc30ecc54e464b791dd591a5becc02f4fd06c"><code>84ddc30</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/log/issues/552">#552</a> from rust-lang/cargo/0.4.18</li> <li><a href="https://github.com/rust-lang/log/commit/9ae986d8e5fcb5980e436b838672de94d2d5bec7"><code>9ae986d</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/log/issues/548">#548</a> from iorust/master</li> <li><a href="https://github.com/rust-lang/log/commit/5322e569d0549c6c23a1dc179122b5797fba1b0a"><code>5322e56</code></a> update changelog to reflect actual changes</li> <li><a href="https://github.com/rust-lang/log/commit/db9e5cc2140cfb5ab0a39c84769ccd887323a49a"><code>db9e5cc</code></a> Add the structured-logger crate to the README</li> <li><a href="https://github.com/rust-lang/log/commit/92e83c04f3dfc99c71c63e6f144878517f0fd563"><code>92e83c0</code></a> fixes for unrevert</li> <li><a href="https://github.com/rust-lang/log/commit/54d48fb53e6ba9cb059968c48dc9580bee4fc003"><code>54d48fb</code></a> prepare for 0.4.19 release</li> <li><a href="https://github.com/rust-lang/log/commit/3c8473d9ed17f12db4487062f64eab705ea803b3"><code>3c8473d</code></a> Revert &quot;Revert &quot;Remove build.rs file&quot;&quot;</li> <li>See full diff in <a href="https://github.com/rust-lang/log/compare/0.4.18...0.4.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=log&package-manager=cargo&previous-version=0.4.18&new-version=0.4.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-06-12 06:34:14 +03:00
version = "0.4.19"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump log from 0.4.18 to 0.4.19 (#711) Bumps [log](https://github.com/rust-lang/log) from 0.4.18 to 0.4.19. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/log/blob/master/CHANGELOG.md">log's changelog</a>.</em></p> <blockquote> <h2>[0.4.19] - 2023-06-10</h2> <ul> <li>Use target_has_atomic instead of the old atomic_cas cfg by <a href="https://github.com/GuillaumeGomez"><code>@​GuillaumeGomez</code></a> in <a href="https://redirect.github.com/rust-lang/log/pull/555">rust-lang/log#555</a></li> <li>Put MSRV into Cargo.toml by <a href="https://github.com/est31"><code>@​est31</code></a> in <a href="https://redirect.github.com/rust-lang/log/pull/557">rust-lang/log#557</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/log/commit/84ddc30ecc54e464b791dd591a5becc02f4fd06c"><code>84ddc30</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/log/issues/552">#552</a> from rust-lang/cargo/0.4.18</li> <li><a href="https://github.com/rust-lang/log/commit/9ae986d8e5fcb5980e436b838672de94d2d5bec7"><code>9ae986d</code></a> Merge pull request <a href="https://redirect.github.com/rust-lang/log/issues/548">#548</a> from iorust/master</li> <li><a href="https://github.com/rust-lang/log/commit/5322e569d0549c6c23a1dc179122b5797fba1b0a"><code>5322e56</code></a> update changelog to reflect actual changes</li> <li><a href="https://github.com/rust-lang/log/commit/db9e5cc2140cfb5ab0a39c84769ccd887323a49a"><code>db9e5cc</code></a> Add the structured-logger crate to the README</li> <li><a href="https://github.com/rust-lang/log/commit/92e83c04f3dfc99c71c63e6f144878517f0fd563"><code>92e83c0</code></a> fixes for unrevert</li> <li><a href="https://github.com/rust-lang/log/commit/54d48fb53e6ba9cb059968c48dc9580bee4fc003"><code>54d48fb</code></a> prepare for 0.4.19 release</li> <li><a href="https://github.com/rust-lang/log/commit/3c8473d9ed17f12db4487062f64eab705ea803b3"><code>3c8473d</code></a> Revert &quot;Revert &quot;Remove build.rs file&quot;&quot;</li> <li>See full diff in <a href="https://github.com/rust-lang/log/compare/0.4.18...0.4.19">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=log&package-manager=cargo&previous-version=0.4.18&new-version=0.4.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-06-12 06:34:14 +03:00
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2018-01-22 20:01:44 +03:00
2018-01-16 15:55:05 +03:00
[[package]]
name = "martin"
version = "0.8.7"
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 criterion from 0.4.0 to 0.5.0 (#673) Bumps [criterion](https://github.com/bheisler/criterion.rs) from 0.4.0 to 0.5.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md">criterion's changelog</a>.</em></p> <blockquote> <h2>[0.5.0] - 2023-05-23</h2> <h3>Changed</h3> <ul> <li>Replaced lazy_static dependency with once_cell</li> <li>Improved documentation of the <code>html_reports</code> feature</li> <li>Replaced atty dependency with is-terminal</li> <li>MSRV bumped to 1.64</li> <li>Upgraded clap dependency to v4</li> <li>Upgraded tempfile dependency to v3.5.0</li> </ul> <h3>Fixed</h3> <ul> <li>Quick mode (<code>--quick</code>) no longer outputs 1ms for measured times over 5 seconds</li> <li>Documentation updates</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bheisler/criterion.rs/commit/4a560cb8d8b4cefc4819a6489f0ce0540663968d"><code>4a560cb</code></a> release version 0.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/683">#683</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/3e2849ebf86e27507f783a20647a0fc81c6bfcc7"><code>3e2849e</code></a> Post v0.4 CHANGELOG updates (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/680">#680</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/637010e50d3819839cd45d9f5b281c169573416a"><code>637010e</code></a> Bump clap to version 4 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/679">#679</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/39d7e2f9546981d87ae195fe7c68f778afdb66a4"><code>39d7e2f</code></a> Update to tempfile 3.5 (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/675">#675</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/8ab2752ccfeece50347c81866a4185f29fd978a2"><code>8ab2752</code></a> Fix typo in known_limitations.md (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/674">#674</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a2112308ef8e3d8fe5a8da41ccb0fba3d5d460c4"><code>a211230</code></a> chore: replace atty with is-terminal (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/628">#628</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/a844eb226bb814e6a4e8b35b3b91c74f22ad535b"><code>a844eb2</code></a> Bump MSRV to 1.60 for csv dependency (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/665">#665</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2f5360737807cbe90d149db6199783236f0ef634"><code>2f53607</code></a> Use OR operator to specify multiple licenses (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/643">#643</a>)</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/86dcd7d323799043c100dbf358409e986a872a11"><code>86dcd7d</code></a> Fix bug where time over the maximum would be reported as 1ms in quick mode. (...</li> <li><a href="https://github.com/bheisler/criterion.rs/commit/2942aee124e433213f0e9b917bb730bcdc7df6f3"><code>2942aee</code></a> Remove unnecessary <code>pub</code> from example code (<a href="https://redirect.github.com/bheisler/criterion.rs/issues/657">#657</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bheisler/criterion.rs/compare/0.4.0...0.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=criterion&package-manager=cargo&previous-version=0.4.0&new-version=0.5.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>
2023-05-24 06:32:10 +03:00
"clap",
"criterion",
"ctor",
"deadpool-postgres",
"env_logger",
"flate2",
"futures",
"indoc",
"itertools 0.11.0",
"log",
"martin-mbtiles",
"martin-tile-utils",
"num_cpus",
"openssl",
"pmtiles",
"postgis",
"postgres",
"postgres-openssl",
"postgres-protocol",
"regex",
"semver",
"serde",
"serde_json",
"serde_yaml",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"spreet",
"subst",
"thiserror",
"tilejson",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"tokio",
2018-01-16 15:55:05 +03:00
]
[[package]]
name = "martin-mbtiles"
version = "0.4.0"
dependencies = [
"actix-rt",
"anyhow",
"clap",
"futures",
"log",
"martin-tile-utils",
"serde_json",
"sqlx",
"thiserror",
"tilejson",
"tokio",
]
[[package]]
name = "martin-tile-utils"
2023-06-04 22:04:42 +03:00
version = "0.1.2"
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
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "memmap2"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
dependencies = [
"libc",
]
[[package]]
name = "memmapix"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa20aa603283688ba48d9ee8c225b900aebf0d0a871630ed5239e7bf606e5fd1"
dependencies = [
2023-07-06 03:56:23 +03:00
"rustix 0.35.14",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "memoffset"
2023-06-13 06:05:54 +03:00
version = "0.9.0"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
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"
2023-03-22 07:47:14 +03:00
version = "0.3.17"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
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"
chore(deps): Bump flate2 from 1.0.25 to 1.0.26 (#650) Bumps [flate2](https://github.com/rust-lang/flate2-rs) from 1.0.25 to 1.0.26. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-lang/flate2-rs/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flate2&package-manager=cargo&previous-version=1.0.25&new-version=1.0.26)](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-05-01 06:32:26 +03:00
version = "0.7.1"
2020-07-05 12:33:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump flate2 from 1.0.25 to 1.0.26 (#650) Bumps [flate2](https://github.com/rust-lang/flate2-rs) from 1.0.25 to 1.0.26. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/rust-lang/flate2-rs/commits">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=flate2&package-manager=cargo&previous-version=1.0.25&new-version=1.0.26)](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-05-01 06:32:26 +03:00
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
2020-07-05 12:33:47 +03:00
dependencies = [
"adler",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"simd-adler32",
2020-07-05 12:33:47 +03:00
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "mio"
2023-05-30 22:23:20 +03:00
version = "0.8.8"
2018-02-21 13:37:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-30 22:23:20 +03:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2018-02-21 13:37:31 +03:00
dependencies = [
"libc",
"log",
"wasi",
2023-05-30 22:23:20 +03:00
"windows-sys 0.48.0",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "multimap"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70db9248a93dc36a36d9a47898caa007a32755c7ad140ec64eeeb50d5a730631"
dependencies = [
"serde",
]
[[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",
]
[[package]]
name = "num-bigint-dig"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
"smallvec",
"zeroize",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2017-09-30 13:55:44 +03:00
[[package]]
name = "num-traits"
2023-07-21 05:56:50 +03:00
version = "0.2.16"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
2017-09-30 13:55:44 +03:00
dependencies = [
"autocfg",
"libm",
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.15.0 to 1.16.0 (#737) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.15.0 to 1.16.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.16.0</h2> <h2>Features</h2> <ul> <li>add support for AIX operating system</li> </ul> <h2>Fixes</h2> <ul> <li>update hermit-abi to 0.3.0</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mkroening"><code>@​mkroening</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/128">seanmonstar/num_cpus#128</a></li> <li><a href="https://github.com/ecnelises"><code>@​ecnelises</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/123">seanmonstar/num_cpus#123</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.16.0</h2> <h3>Features</h3> <ul> <li>add support for AIX operating system</li> </ul> <h3>Fixes</h3> <ul> <li>update hermit-abi to 0.3.0</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/7c03fc930cc47a9b94e8ca66ca44ef1a454c8f51"><code>7c03fc9</code></a> v1.16.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/cd76834c4f3d3a9d00115c26c20829febf4d92fc"><code>cd76834</code></a> add funding file</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/f3e70815f99bcca7611f6ac18d65cfe9965d23ad"><code>f3e7081</code></a> Support AIX operating system (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/123">#123</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/edf035ceeb6a71f0a2dd7ab6420a7f3a76812c2b"><code>edf035c</code></a> Update CI badges (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/132">#132</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/3b6e5f03178738967caebf5398aaff8e9167c6b6"><code>3b6e5f0</code></a> Bump hermit-abi to 0.3.0 and don't restrict hermit-abi architectures (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/128">#128</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.15.0...v1.16.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.15.0&new-version=1.16.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>
2023-07-01 00:32:29 +03:00
version = "1.16.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.15.0 to 1.16.0 (#737) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.15.0 to 1.16.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.16.0</h2> <h2>Features</h2> <ul> <li>add support for AIX operating system</li> </ul> <h2>Fixes</h2> <ul> <li>update hermit-abi to 0.3.0</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mkroening"><code>@​mkroening</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/128">seanmonstar/num_cpus#128</a></li> <li><a href="https://github.com/ecnelises"><code>@​ecnelises</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/123">seanmonstar/num_cpus#123</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.16.0</h2> <h3>Features</h3> <ul> <li>add support for AIX operating system</li> </ul> <h3>Fixes</h3> <ul> <li>update hermit-abi to 0.3.0</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/7c03fc930cc47a9b94e8ca66ca44ef1a454c8f51"><code>7c03fc9</code></a> v1.16.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/cd76834c4f3d3a9d00115c26c20829febf4d92fc"><code>cd76834</code></a> add funding file</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/f3e70815f99bcca7611f6ac18d65cfe9965d23ad"><code>f3e7081</code></a> Support AIX operating system (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/123">#123</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/edf035ceeb6a71f0a2dd7ab6420a7f3a76812c2b"><code>edf035c</code></a> Update CI badges (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/132">#132</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/3b6e5f03178738967caebf5398aaff8e9167c6b6"><code>3b6e5f0</code></a> Bump hermit-abi to 0.3.0 and don't restrict hermit-abi architectures (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/128">#128</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.15.0...v1.16.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.15.0&new-version=1.16.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>
2023-07-01 00:32:29 +03:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2017-10-09 14:29:03 +03:00
dependencies = [
chore(deps): Bump num_cpus from 1.15.0 to 1.16.0 (#737) Bumps [num_cpus](https://github.com/seanmonstar/num_cpus) from 1.15.0 to 1.16.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.16.0</h2> <h2>Features</h2> <ul> <li>add support for AIX operating system</li> </ul> <h2>Fixes</h2> <ul> <li>update hermit-abi to 0.3.0</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mkroening"><code>@​mkroening</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/128">seanmonstar/num_cpus#128</a></li> <li><a href="https://github.com/ecnelises"><code>@​ecnelises</code></a> made their first contribution in <a href="https://redirect.github.com/seanmonstar/num_cpus/pull/123">seanmonstar/num_cpus#123</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.16.0</h2> <h3>Features</h3> <ul> <li>add support for AIX operating system</li> </ul> <h3>Fixes</h3> <ul> <li>update hermit-abi to 0.3.0</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/seanmonstar/num_cpus/commit/7c03fc930cc47a9b94e8ca66ca44ef1a454c8f51"><code>7c03fc9</code></a> v1.16.0</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/cd76834c4f3d3a9d00115c26c20829febf4d92fc"><code>cd76834</code></a> add funding file</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/f3e70815f99bcca7611f6ac18d65cfe9965d23ad"><code>f3e7081</code></a> Support AIX operating system (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/123">#123</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/edf035ceeb6a71f0a2dd7ab6420a7f3a76812c2b"><code>edf035c</code></a> Update CI badges (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/132">#132</a>)</li> <li><a href="https://github.com/seanmonstar/num_cpus/commit/3b6e5f03178738967caebf5398aaff8e9167c6b6"><code>3b6e5f0</code></a> Bump hermit-abi to 0.3.0 and don't restrict hermit-abi architectures (<a href="https://redirect.github.com/seanmonstar/num_cpus/issues/128">#128</a>)</li> <li>See full diff in <a href="https://github.com/seanmonstar/num_cpus/compare/v1.15.0...v1.16.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.15.0&new-version=1.16.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>
2023-07-01 00:32:29 +03:00
"hermit-abi",
"libc",
2018-02-21 13:37:31 +03:00
]
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
[[package]]
name = "object"
2023-07-03 13:43:29 +03:00
version = "0.31.1"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
dependencies = [
"memchr",
]
2020-06-07 13:08:12 +03:00
[[package]]
name = "once_cell"
2023-06-04 20:10:53 +03:00
version = "1.18.0"
2020-06-07 13:08:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-04 20:10:53 +03:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
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.55 to 0.10.56 (#796) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.56. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/7daab5b97c387d8fad8d0b054d5b521fe60d57c8"><code>7daab5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2009">#2009</a> from reaperhulk/changelog</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/12ee78d277e4f986ff7da5572d42059810b0f8e3"><code>12ee78d</code></a> changelog and version bump</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0008d1296f628df379769505dc1ea9b33044a716"><code>0008d12</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2008">#2008</a> from alex/deref-cipher</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/8449b822854e29213756ad339abbfb833a73216e"><code>8449b82</code></a> Implement Deref[Mut] for Cipher on older OpenSSLs</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/b1ee513fd164ae7267cfc15e7e9e8bb6f9767600"><code>b1ee513</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2005">#2005</a> from sfackler/sfackler-patch-1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/ee4c126f89c31367c5ee202bd98ae5a99a9b8df5"><code>ee4c126</code></a> bump ci versions</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0a348767cf2961ffe821a9fe9ebbec73a66bdc09"><code>0a34876</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1998">#1998</a> from trail-of-forks/poly1305-bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e1fd4da2448899bf36aa933b533d899a828590ec"><code>e1fd4da</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2002">#2002</a> from davidben/no-sock</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/c8b6077ca8b0d741383abcd1586d3ba4bbbaadd5"><code>c8b6077</code></a> Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/99bce5b312ed6678bae21f7f86afae4b7be6db68"><code>99bce5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2000">#2000</a> from zh-jq/ec_point_to_hex_str</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56">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.55&new-version=0.10.56)](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-08-07 05:55:19 +03:00
version = "0.10.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump openssl from 0.10.55 to 0.10.56 (#796) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.56. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/7daab5b97c387d8fad8d0b054d5b521fe60d57c8"><code>7daab5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2009">#2009</a> from reaperhulk/changelog</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/12ee78d277e4f986ff7da5572d42059810b0f8e3"><code>12ee78d</code></a> changelog and version bump</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0008d1296f628df379769505dc1ea9b33044a716"><code>0008d12</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2008">#2008</a> from alex/deref-cipher</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/8449b822854e29213756ad339abbfb833a73216e"><code>8449b82</code></a> Implement Deref[Mut] for Cipher on older OpenSSLs</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/b1ee513fd164ae7267cfc15e7e9e8bb6f9767600"><code>b1ee513</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2005">#2005</a> from sfackler/sfackler-patch-1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/ee4c126f89c31367c5ee202bd98ae5a99a9b8df5"><code>ee4c126</code></a> bump ci versions</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0a348767cf2961ffe821a9fe9ebbec73a66bdc09"><code>0a34876</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1998">#1998</a> from trail-of-forks/poly1305-bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e1fd4da2448899bf36aa933b533d899a828590ec"><code>e1fd4da</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2002">#2002</a> from davidben/no-sock</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/c8b6077ca8b0d741383abcd1586d3ba4bbbaadd5"><code>c8b6077</code></a> Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/99bce5b312ed6678bae21f7f86afae4b7be6db68"><code>99bce5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2000">#2000</a> from zh-jq/ec_point_to_hex_str</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56">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.55&new-version=0.10.56)](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-08-07 05:55:19 +03:00
checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e"
dependencies = [
2023-07-03 13:43:29 +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"
2023-04-03 05:06:55 +03:00
version = "0.1.1"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-03 05:06:55 +03:00
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-05-03 12:12:54 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
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-08-04 05:47:04 +03:00
version = "111.27.0+1.1.1v"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 05:47:04 +03:00
checksum = "06e8f197c82d7511c5b014030c9b1efeda40d7d5f99d23b4ceed3524a5e63f02"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
chore(deps): Bump openssl from 0.10.55 to 0.10.56 (#796) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.56. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/7daab5b97c387d8fad8d0b054d5b521fe60d57c8"><code>7daab5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2009">#2009</a> from reaperhulk/changelog</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/12ee78d277e4f986ff7da5572d42059810b0f8e3"><code>12ee78d</code></a> changelog and version bump</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0008d1296f628df379769505dc1ea9b33044a716"><code>0008d12</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2008">#2008</a> from alex/deref-cipher</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/8449b822854e29213756ad339abbfb833a73216e"><code>8449b82</code></a> Implement Deref[Mut] for Cipher on older OpenSSLs</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/b1ee513fd164ae7267cfc15e7e9e8bb6f9767600"><code>b1ee513</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2005">#2005</a> from sfackler/sfackler-patch-1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/ee4c126f89c31367c5ee202bd98ae5a99a9b8df5"><code>ee4c126</code></a> bump ci versions</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0a348767cf2961ffe821a9fe9ebbec73a66bdc09"><code>0a34876</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1998">#1998</a> from trail-of-forks/poly1305-bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e1fd4da2448899bf36aa933b533d899a828590ec"><code>e1fd4da</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2002">#2002</a> from davidben/no-sock</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/c8b6077ca8b0d741383abcd1586d3ba4bbbaadd5"><code>c8b6077</code></a> Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/99bce5b312ed6678bae21f7f86afae4b7be6db68"><code>99bce5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2000">#2000</a> from zh-jq/ec_point_to_hex_str</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56">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.55&new-version=0.10.56)](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-08-07 05:55:19 +03:00
version = "0.9.91"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump openssl from 0.10.55 to 0.10.56 (#796) Bumps [openssl](https://github.com/sfackler/rust-openssl) from 0.10.55 to 0.10.56. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-openssl/commit/7daab5b97c387d8fad8d0b054d5b521fe60d57c8"><code>7daab5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2009">#2009</a> from reaperhulk/changelog</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/12ee78d277e4f986ff7da5572d42059810b0f8e3"><code>12ee78d</code></a> changelog and version bump</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0008d1296f628df379769505dc1ea9b33044a716"><code>0008d12</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2008">#2008</a> from alex/deref-cipher</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/8449b822854e29213756ad339abbfb833a73216e"><code>8449b82</code></a> Implement Deref[Mut] for Cipher on older OpenSSLs</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/b1ee513fd164ae7267cfc15e7e9e8bb6f9767600"><code>b1ee513</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2005">#2005</a> from sfackler/sfackler-patch-1</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/ee4c126f89c31367c5ee202bd98ae5a99a9b8df5"><code>ee4c126</code></a> bump ci versions</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/0a348767cf2961ffe821a9fe9ebbec73a66bdc09"><code>0a34876</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/1998">#1998</a> from trail-of-forks/poly1305-bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/e1fd4da2448899bf36aa933b533d899a828590ec"><code>e1fd4da</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2002">#2002</a> from davidben/no-sock</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/c8b6077ca8b0d741383abcd1586d3ba4bbbaadd5"><code>c8b6077</code></a> Gate BIO_new_socket in OPENSSL_NO_SOCK in handwritten bindings</li> <li><a href="https://github.com/sfackler/rust-openssl/commit/99bce5b312ed6678bae21f7f86afae4b7be6db68"><code>99bce5b</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-openssl/issues/2000">#2000</a> from zh-jq/ec_point_to_hex_str</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56">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.55&new-version=0.10.56)](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-08-07 05:55:19 +03:00
checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
2019-06-19 12:34:06 +03:00
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "oxipng"
version = "8.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630638e107fb436644c300e781d3f17e1b04656138ba0d40564be4be3b06db32"
dependencies = [
"bitvec",
"crossbeam-channel",
"filetime",
"image",
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
"indexmap 1.9.3",
"itertools 0.10.5",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"libdeflater",
"log",
"rayon",
"rgb",
"rustc-hash",
"rustc_version",
"zopfli",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
2022-05-03 12:12:54 +03:00
[[package]]
name = "parking_lot_core"
2023-06-13 06:05:54 +03:00
version = "0.9.8"
2022-05-03 12:12:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2022-05-03 12:12:54 +03:00
dependencies = [
"cfg-if",
2022-05-03 12:12:54 +03:00
"libc",
2023-08-06 05:11:53 +03:00
"redox_syscall",
2022-05-03 12:12:54 +03:00
"smallvec",
2023-06-13 06:05:54 +03:00
"windows-targets",
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",
chore(deps): Bump regex from 1.7.3 to 1.8.1 (#645) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.8.1 (2023-04-21)</h1> <p>This is a patch release that fixes a bug where a regex match could be reported where none was found. Specifically, the bug occurs when a pattern contains some literal prefixes that could be extracted <em>and</em> an optional word boundary in the prefix.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/981">#981</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/981">rust-lang/regex#981</a>): Fix a bug where a word boundary could interact with prefix literal optimizations and lead to a false positive match.</li> </ul> <h1>1.8.0 (2023-04-20)</h1> <p>This is a sizeable release that will be soon followed by another sizeable release. Both of them will combined close over 40 existing issues and PRs.</p> <p>This first release, despite its size, essentially represent preparatory work for the second release, which will be even bigger. Namely, this release:</p> <ul> <li>Increases the MSRV to Rust 1.60.0, which was released about 1 year ago.</li> <li>Upgrades its dependency on <code>aho-corasick</code> to the recently release 1.0 version.</li> <li>Upgrades its dependency on <code>regex-syntax</code> to the simultaneously released <code>0.7</code> version. The changes to <code>regex-syntax</code> principally revolve around a rewrite of its literal extraction code and a number of simplifications and optimizations to its high-level intermediate representation (HIR).</li> </ul> <p>The second release, which will follow ~shortly after the release above, will contain a soup-to-nuts rewrite of every regex engine. This will be done by bringing <a href="https://github.com/BurntSushi/regex-automata"><code>regex-automata</code></a> into this repository, and then changing the <code>regex</code> crate to be nothing but an API shim layer on top of <code>regex-automata</code>'s API.</p> <p>These tandem releases are the culmination of about 3 years of on-and-off work that <a href="https://redirect.github.com/rust-lang/regex/issues/656">began in earnest in March 2020</a>.</p> <p>Because of the scale of changes involved in these releases, I would love to hear about your experience. Especially if you notice undocumented changes in behavior or performance changes (positive <em>or</em> negative).</p> <p>Most changes in the first release are listed below. For more details, please see the commit log, which reflects a linear and decently documented history of all changes.</p> <p>New features:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/4e29fceace6f3c189f78b1baaec6755f27d69ffb"><code>4e29fce</code></a> 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/8a7cb645cfd7c4e0f77482e8894155b93ca5fc3f"><code>8a7cb64</code></a> deps: bump regex-syntax to 0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/31c845296c5d34092aae637a02bf0d757a35f646"><code>31c8452</code></a> regex-syntax-0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/960aadeba06420f8b979aa983fd55429c42d3e4a"><code>960aade</code></a> changelog: 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/f003d72578c84d3b849fa1c59724e003338a3ca1"><code>f003d72</code></a> impl: fix prefix literal matching bug</li> <li><a href="https://github.com/rust-lang/regex/commit/93316a3b1adc43cc12fab6c73a59f646658cd984"><code>93316a3</code></a> doc: update MSRV in README</li> <li><a href="https://github.com/rust-lang/regex/commit/070374f2878f23809a4e5ca0810d523f692c6e7e"><code>070374f</code></a> release: 1.8.0</li> <li><a href="https://github.com/rust-lang/regex/commit/a73c61cecbf24ebf70699269cca95b991dbe2e7e"><code>a73c61c</code></a> fuzz: get rid of 'named-profiles' feature</li> <li><a href="https://github.com/rust-lang/regex/commit/7cd75d22b56f60dc711976242a5cbca9e5922413"><code>7cd75d2</code></a> changelog: tweaks to 1.8 release entry</li> <li><a href="https://github.com/rust-lang/regex/commit/33898de870fc584ce912651590d8715d1178e667"><code>33898de</code></a> syntax: fix bug in new alternation literal analysis</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.7.3...1.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.3&new-version=1.8.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-04-24 20:48:13 +03:00
"regex-syntax 0.6.29",
"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-07-17 05:21:54 +03:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2019-07-28 18:05:15 +03:00
[[package]]
name = "percent-encoding"
2023-06-13 06:05:54 +03:00
version = "2.3.0"
2019-07-28 18:05:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2018-02-21 13:37:31 +03:00
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf"
2023-07-03 13:43:29 +03:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
2020-10-31 13:07:04 +03:00
"phf_shared",
]
[[package]]
2020-10-31 13:07:04 +03:00
name = "phf_shared"
2023-07-03 13:43:29 +03:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
2020-10-31 13:07:04 +03:00
"siphasher",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "pico-args"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
[[package]]
name = "pin-project"
2023-08-08 22:33:30 +03:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-08-08 22:33:30 +03:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
2020-12-20 15:45:58 +03:00
[[package]]
name = "pin-project-lite"
2023-08-08 22:33:30 +03:00
version = "0.2.11"
2020-12-20 15:45:58 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "2c516611246607d0c04186886dbb3a754368ef82c79e9827a802c6d836dd111c"
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 = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
[[package]]
name = "pkg-config"
2023-05-09 11:39:31 +03:00
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:39:31 +03:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
[[package]]
name = "plotters"
2023-06-17 06:57:31 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-17 06:57:31 +03:00
checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
2023-06-17 06:57:31 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-17 06:57:31 +03:00
checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
[[package]]
name = "plotters-svg"
2023-06-17 06:57:31 +03:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-17 06:57:31 +03:00
checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
dependencies = [
"plotters-backend",
]
[[package]]
name = "pmtiles"
2023-05-25 19:01:35 +03:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-25 19:01:35 +03:00
checksum = "648223fdb2b9b5e7cf99ffca14801a056195a184c5900d3f4083185cfbd8aa10"
dependencies = [
"async-compression",
"async-recursion",
"async-trait",
"bytes",
"fmmap",
"hilbert_2d",
"serde",
"serde_json",
"tilejson",
"tokio",
"varint-rs",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "png"
version = "0.17.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59871cc5b6cce7eaccca5a802b4173377a1c2ba90654246789a8fa2334426d11"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"crc32fast",
"fdeflate",
"flate2",
2023-07-03 13:43:29 +03:00
"miniz_oxide",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
]
[[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"
2023-04-04 16:25:50 +03:00
version = "0.19.5"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-04 16:25:50 +03:00
checksum = "0bed5017bc2ff49649c0075d0d7a9d676933c1292480c1d137776fb205b5cd18"
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"
chore(deps): Bump postgres-protocol from 0.6.4 to 0.6.5 (#621) Bumps [postgres-protocol](https://github.com/sfackler/rust-postgres) from 0.6.4 to 0.6.5. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-postgres/commit/a46796798aff0ab30e21abe9160bf1246b354626"><code>a467967</code></a> Release postgres-protocol v0.6.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/5be97d9559ff7077eb77486ca2c789907f58ff9c"><code>5be97d9</code></a> Release postgres-types v0.2.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/39fa1ad39e2125c55559a5ebe6a9ba0c6c911f8c"><code>39fa1ad</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1003">#1003</a> from sfackler/dependabot/cargo/socket2-0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/9c0d2dddc43b6137ae5bb0a540b3442b33565fa4"><code>9c0d2dd</code></a> Update ci.yml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a205d23141bb389693bf27a7e8233b5db072a7f5"><code>a205d23</code></a> Update Cargo.toml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/58f06610cc9e0437c7779ce7dad234fa7a2241c3"><code>58f0661</code></a> Update socket2 requirement from 0.4 to 0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/c85b2c1dbbd12e5fdb6d6406c356aac0eac58432"><code>c85b2c1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1007">#1007</a> from pH14/add-tcp-user-timeout</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/62a443222c8f660438251ef17cb2ca088f48e207"><code>62a4432</code></a> use correct error type</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a9967c05ff40de34e1471bf28cd956e756d1f6f9"><code>a9967c0</code></a> docs: mention sys default if 0</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/ee5a139028f9f470f4adae61d80e0404fe310ab2"><code>ee5a139</code></a> add in to param parsing; update doc</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.6.4...postgres-protocol-v0.6.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postgres-protocol&package-manager=cargo&previous-version=0.6.4&new-version=0.6.5)](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-28 07:34:09 +03:00
version = "0.6.5"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump postgres-protocol from 0.6.4 to 0.6.5 (#621) Bumps [postgres-protocol](https://github.com/sfackler/rust-postgres) from 0.6.4 to 0.6.5. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-postgres/commit/a46796798aff0ab30e21abe9160bf1246b354626"><code>a467967</code></a> Release postgres-protocol v0.6.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/5be97d9559ff7077eb77486ca2c789907f58ff9c"><code>5be97d9</code></a> Release postgres-types v0.2.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/39fa1ad39e2125c55559a5ebe6a9ba0c6c911f8c"><code>39fa1ad</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1003">#1003</a> from sfackler/dependabot/cargo/socket2-0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/9c0d2dddc43b6137ae5bb0a540b3442b33565fa4"><code>9c0d2dd</code></a> Update ci.yml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a205d23141bb389693bf27a7e8233b5db072a7f5"><code>a205d23</code></a> Update Cargo.toml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/58f06610cc9e0437c7779ce7dad234fa7a2241c3"><code>58f0661</code></a> Update socket2 requirement from 0.4 to 0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/c85b2c1dbbd12e5fdb6d6406c356aac0eac58432"><code>c85b2c1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1007">#1007</a> from pH14/add-tcp-user-timeout</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/62a443222c8f660438251ef17cb2ca088f48e207"><code>62a4432</code></a> use correct error type</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a9967c05ff40de34e1471bf28cd956e756d1f6f9"><code>a9967c0</code></a> docs: mention sys default if 0</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/ee5a139028f9f470f4adae61d80e0404fe310ab2"><code>ee5a139</code></a> add in to param parsing; update doc</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.6.4...postgres-protocol-v0.6.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postgres-protocol&package-manager=cargo&previous-version=0.6.4&new-version=0.6.5)](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-28 07:34:09 +03:00
checksum = "78b7fa9f396f51dffd61546fd8573ee20592287996568e6175ceb0f8699ad75d"
2017-10-09 14:29:03 +03:00
dependencies = [
chore(deps): Bump postgres-protocol from 0.6.4 to 0.6.5 (#621) Bumps [postgres-protocol](https://github.com/sfackler/rust-postgres) from 0.6.4 to 0.6.5. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sfackler/rust-postgres/commit/a46796798aff0ab30e21abe9160bf1246b354626"><code>a467967</code></a> Release postgres-protocol v0.6.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/5be97d9559ff7077eb77486ca2c789907f58ff9c"><code>5be97d9</code></a> Release postgres-types v0.2.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/39fa1ad39e2125c55559a5ebe6a9ba0c6c911f8c"><code>39fa1ad</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1003">#1003</a> from sfackler/dependabot/cargo/socket2-0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/9c0d2dddc43b6137ae5bb0a540b3442b33565fa4"><code>9c0d2dd</code></a> Update ci.yml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a205d23141bb389693bf27a7e8233b5db072a7f5"><code>a205d23</code></a> Update Cargo.toml</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/58f06610cc9e0437c7779ce7dad234fa7a2241c3"><code>58f0661</code></a> Update socket2 requirement from 0.4 to 0.5</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/c85b2c1dbbd12e5fdb6d6406c356aac0eac58432"><code>c85b2c1</code></a> Merge pull request <a href="https://redirect.github.com/sfackler/rust-postgres/issues/1007">#1007</a> from pH14/add-tcp-user-timeout</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/62a443222c8f660438251ef17cb2ca088f48e207"><code>62a4432</code></a> use correct error type</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/a9967c05ff40de34e1471bf28cd956e756d1f6f9"><code>a9967c0</code></a> docs: mention sys default if 0</li> <li><a href="https://github.com/sfackler/rust-postgres/commit/ee5a139028f9f470f4adae61d80e0404fe310ab2"><code>ee5a139</code></a> add in to param parsing; update doc</li> <li>Additional commits viewable in <a href="https://github.com/sfackler/rust-postgres/compare/postgres-protocol-v0.6.4...postgres-protocol-v0.6.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=postgres-protocol&package-manager=cargo&previous-version=0.6.4&new-version=0.6.5)](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-28 07:34:09 +03:00
"base64",
"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"
2023-04-03 05:06:55 +03:00
version = "0.2.5"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-03 05:06:55 +03:00
checksum = "f028f05971fe20f512bcc679e2c10227e57809a3af86a7606304435bc8896cd6"
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"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "predicates"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9"
dependencies = [
"anstyle",
"difflib",
"itertools 0.10.5",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"predicates-core",
]
[[package]]
name = "predicates-core"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
[[package]]
name = "predicates-tree"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
dependencies = [
"predicates-core",
"termtree",
]
2019-08-20 12:19:04 +03:00
[[package]]
name = "proc-macro2"
2023-07-17 05:21:54 +03:00
version = "1.0.66"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
2019-08-20 12:19:04 +03:00
dependencies = [
"unicode-ident",
2019-08-20 12:19:04 +03:00
]
[[package]]
name = "quote"
2023-07-24 06:39:17 +03:00
version = "1.0.32"
2019-08-20 12:19:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-24 06:39:17 +03:00
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
2019-08-20 12:19:04 +03:00
dependencies = [
"proc-macro2",
2019-08-20 12:19:04 +03:00
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "radium"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
[[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",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "rctree"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b42e27ef78c35d3998403c1d26f3efd9e135d3e5121b0a4845cc5cc27547f4f"
2023-04-03 05:06:55 +03:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
2023-04-03 05:06:55 +03:00
]
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex"
2023-08-06 05:11:53 +03:00
version = "1.9.3"
2023-07-06 03:56:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 05:11:53 +03:00
checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a"
2023-07-06 03:56:23 +03:00
dependencies = [
2023-07-17 05:21:54 +03:00
"aho-corasick",
2023-07-06 03:56:23 +03:00
"memchr",
"regex-automata",
2023-07-17 05:21:54 +03:00
"regex-syntax 0.7.4",
2023-07-06 03:56:23 +03:00
]
[[package]]
name = "regex-automata"
2023-08-06 05:11:53 +03:00
version = "0.3.6"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 05:11:53 +03:00
checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69"
2017-10-09 14:29:03 +03:00
dependencies = [
2023-07-17 05:21:54 +03:00
"aho-corasick",
"memchr",
2023-07-17 05:21:54 +03:00
"regex-syntax 0.7.4",
2017-10-09 14:29:03 +03:00
]
2018-05-05 10:08:27 +03:00
[[package]]
name = "regex-syntax"
chore(deps): Bump regex from 1.7.1 to 1.7.2 (#609) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.1 to 1.7.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.7.2 (2023-03-21)</h1> <p>This is a small release that fixes a failing test on FreeBSD.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/967">#967</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/967">rust-lang/regex#967</a>): Fix &quot;no stack overflow&quot; test which can fail due to the small stack size.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/32fed9429eafba0ae92a64b01796a0c5a75b88c8"><code>32fed94</code></a> 1.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/6a7ba1e5781c90487b8ad9c446eebbb28d6b2c66"><code>6a7ba1e</code></a> deps: bump to regex-syntax 0.6.29</li> <li><a href="https://github.com/rust-lang/regex/commit/72d482f911c4057f9a31f7f434dfe27c929a8913"><code>72d482f</code></a> regex-syntax-0.6.29</li> <li><a href="https://github.com/rust-lang/regex/commit/48b3ba4df73d8917a000e28b7a13bb084a0b6090"><code>48b3ba4</code></a> changelog: 1.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/d8e22ddf9933c37daf6363837b32290d2961ffdb"><code>d8e22dd</code></a> syntax: tweak the &quot;no stack overflow&quot; test</li> <li>See full diff in <a href="https://github.com/rust-lang/regex/compare/1.7.1...1.7.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.1&new-version=1.7.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>
2023-03-22 06:28:42 +03:00
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump regex from 1.7.1 to 1.7.2 (#609) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.1 to 1.7.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.7.2 (2023-03-21)</h1> <p>This is a small release that fixes a failing test on FreeBSD.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/967">#967</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/967">rust-lang/regex#967</a>): Fix &quot;no stack overflow&quot; test which can fail due to the small stack size.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/32fed9429eafba0ae92a64b01796a0c5a75b88c8"><code>32fed94</code></a> 1.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/6a7ba1e5781c90487b8ad9c446eebbb28d6b2c66"><code>6a7ba1e</code></a> deps: bump to regex-syntax 0.6.29</li> <li><a href="https://github.com/rust-lang/regex/commit/72d482f911c4057f9a31f7f434dfe27c929a8913"><code>72d482f</code></a> regex-syntax-0.6.29</li> <li><a href="https://github.com/rust-lang/regex/commit/48b3ba4df73d8917a000e28b7a13bb084a0b6090"><code>48b3ba4</code></a> changelog: 1.7.2</li> <li><a href="https://github.com/rust-lang/regex/commit/d8e22ddf9933c37daf6363837b32290d2961ffdb"><code>d8e22dd</code></a> syntax: tweak the &quot;no stack overflow&quot; test</li> <li>See full diff in <a href="https://github.com/rust-lang/regex/compare/1.7.1...1.7.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.1&new-version=1.7.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>
2023-03-22 06:28:42 +03:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
chore(deps): Bump regex from 1.7.3 to 1.8.1 (#645) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.8.1 (2023-04-21)</h1> <p>This is a patch release that fixes a bug where a regex match could be reported where none was found. Specifically, the bug occurs when a pattern contains some literal prefixes that could be extracted <em>and</em> an optional word boundary in the prefix.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/981">#981</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/981">rust-lang/regex#981</a>): Fix a bug where a word boundary could interact with prefix literal optimizations and lead to a false positive match.</li> </ul> <h1>1.8.0 (2023-04-20)</h1> <p>This is a sizeable release that will be soon followed by another sizeable release. Both of them will combined close over 40 existing issues and PRs.</p> <p>This first release, despite its size, essentially represent preparatory work for the second release, which will be even bigger. Namely, this release:</p> <ul> <li>Increases the MSRV to Rust 1.60.0, which was released about 1 year ago.</li> <li>Upgrades its dependency on <code>aho-corasick</code> to the recently release 1.0 version.</li> <li>Upgrades its dependency on <code>regex-syntax</code> to the simultaneously released <code>0.7</code> version. The changes to <code>regex-syntax</code> principally revolve around a rewrite of its literal extraction code and a number of simplifications and optimizations to its high-level intermediate representation (HIR).</li> </ul> <p>The second release, which will follow ~shortly after the release above, will contain a soup-to-nuts rewrite of every regex engine. This will be done by bringing <a href="https://github.com/BurntSushi/regex-automata"><code>regex-automata</code></a> into this repository, and then changing the <code>regex</code> crate to be nothing but an API shim layer on top of <code>regex-automata</code>'s API.</p> <p>These tandem releases are the culmination of about 3 years of on-and-off work that <a href="https://redirect.github.com/rust-lang/regex/issues/656">began in earnest in March 2020</a>.</p> <p>Because of the scale of changes involved in these releases, I would love to hear about your experience. Especially if you notice undocumented changes in behavior or performance changes (positive <em>or</em> negative).</p> <p>Most changes in the first release are listed below. For more details, please see the commit log, which reflects a linear and decently documented history of all changes.</p> <p>New features:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/4e29fceace6f3c189f78b1baaec6755f27d69ffb"><code>4e29fce</code></a> 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/8a7cb645cfd7c4e0f77482e8894155b93ca5fc3f"><code>8a7cb64</code></a> deps: bump regex-syntax to 0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/31c845296c5d34092aae637a02bf0d757a35f646"><code>31c8452</code></a> regex-syntax-0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/960aadeba06420f8b979aa983fd55429c42d3e4a"><code>960aade</code></a> changelog: 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/f003d72578c84d3b849fa1c59724e003338a3ca1"><code>f003d72</code></a> impl: fix prefix literal matching bug</li> <li><a href="https://github.com/rust-lang/regex/commit/93316a3b1adc43cc12fab6c73a59f646658cd984"><code>93316a3</code></a> doc: update MSRV in README</li> <li><a href="https://github.com/rust-lang/regex/commit/070374f2878f23809a4e5ca0810d523f692c6e7e"><code>070374f</code></a> release: 1.8.0</li> <li><a href="https://github.com/rust-lang/regex/commit/a73c61cecbf24ebf70699269cca95b991dbe2e7e"><code>a73c61c</code></a> fuzz: get rid of 'named-profiles' feature</li> <li><a href="https://github.com/rust-lang/regex/commit/7cd75d22b56f60dc711976242a5cbca9e5922413"><code>7cd75d2</code></a> changelog: tweaks to 1.8 release entry</li> <li><a href="https://github.com/rust-lang/regex/commit/33898de870fc584ce912651590d8715d1178e667"><code>33898de</code></a> syntax: fix bug in new alternation literal analysis</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.7.3...1.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.3&new-version=1.8.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-04-24 20:48:13 +03:00
[[package]]
name = "regex-syntax"
2023-07-17 05:21:54 +03:00
version = "0.7.4"
chore(deps): Bump regex from 1.7.3 to 1.8.1 (#645) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.8.1 (2023-04-21)</h1> <p>This is a patch release that fixes a bug where a regex match could be reported where none was found. Specifically, the bug occurs when a pattern contains some literal prefixes that could be extracted <em>and</em> an optional word boundary in the prefix.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/981">#981</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/981">rust-lang/regex#981</a>): Fix a bug where a word boundary could interact with prefix literal optimizations and lead to a false positive match.</li> </ul> <h1>1.8.0 (2023-04-20)</h1> <p>This is a sizeable release that will be soon followed by another sizeable release. Both of them will combined close over 40 existing issues and PRs.</p> <p>This first release, despite its size, essentially represent preparatory work for the second release, which will be even bigger. Namely, this release:</p> <ul> <li>Increases the MSRV to Rust 1.60.0, which was released about 1 year ago.</li> <li>Upgrades its dependency on <code>aho-corasick</code> to the recently release 1.0 version.</li> <li>Upgrades its dependency on <code>regex-syntax</code> to the simultaneously released <code>0.7</code> version. The changes to <code>regex-syntax</code> principally revolve around a rewrite of its literal extraction code and a number of simplifications and optimizations to its high-level intermediate representation (HIR).</li> </ul> <p>The second release, which will follow ~shortly after the release above, will contain a soup-to-nuts rewrite of every regex engine. This will be done by bringing <a href="https://github.com/BurntSushi/regex-automata"><code>regex-automata</code></a> into this repository, and then changing the <code>regex</code> crate to be nothing but an API shim layer on top of <code>regex-automata</code>'s API.</p> <p>These tandem releases are the culmination of about 3 years of on-and-off work that <a href="https://redirect.github.com/rust-lang/regex/issues/656">began in earnest in March 2020</a>.</p> <p>Because of the scale of changes involved in these releases, I would love to hear about your experience. Especially if you notice undocumented changes in behavior or performance changes (positive <em>or</em> negative).</p> <p>Most changes in the first release are listed below. For more details, please see the commit log, which reflects a linear and decently documented history of all changes.</p> <p>New features:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/4e29fceace6f3c189f78b1baaec6755f27d69ffb"><code>4e29fce</code></a> 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/8a7cb645cfd7c4e0f77482e8894155b93ca5fc3f"><code>8a7cb64</code></a> deps: bump regex-syntax to 0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/31c845296c5d34092aae637a02bf0d757a35f646"><code>31c8452</code></a> regex-syntax-0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/960aadeba06420f8b979aa983fd55429c42d3e4a"><code>960aade</code></a> changelog: 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/f003d72578c84d3b849fa1c59724e003338a3ca1"><code>f003d72</code></a> impl: fix prefix literal matching bug</li> <li><a href="https://github.com/rust-lang/regex/commit/93316a3b1adc43cc12fab6c73a59f646658cd984"><code>93316a3</code></a> doc: update MSRV in README</li> <li><a href="https://github.com/rust-lang/regex/commit/070374f2878f23809a4e5ca0810d523f692c6e7e"><code>070374f</code></a> release: 1.8.0</li> <li><a href="https://github.com/rust-lang/regex/commit/a73c61cecbf24ebf70699269cca95b991dbe2e7e"><code>a73c61c</code></a> fuzz: get rid of 'named-profiles' feature</li> <li><a href="https://github.com/rust-lang/regex/commit/7cd75d22b56f60dc711976242a5cbca9e5922413"><code>7cd75d2</code></a> changelog: tweaks to 1.8 release entry</li> <li><a href="https://github.com/rust-lang/regex/commit/33898de870fc584ce912651590d8715d1178e667"><code>33898de</code></a> syntax: fix bug in new alternation literal analysis</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.7.3...1.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.3&new-version=1.8.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-04-24 20:48:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
chore(deps): Bump regex from 1.7.3 to 1.8.1 (#645) Bumps [regex](https://github.com/rust-lang/regex) from 1.7.3 to 1.8.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md">regex's changelog</a>.</em></p> <blockquote> <h1>1.8.1 (2023-04-21)</h1> <p>This is a patch release that fixes a bug where a regex match could be reported where none was found. Specifically, the bug occurs when a pattern contains some literal prefixes that could be extracted <em>and</em> an optional word boundary in the prefix.</p> <p>Bug fixes:</p> <ul> <li>[BUG <a href="https://redirect.github.com/rust-lang/regex/issues/981">#981</a>](<a href="https://redirect.github.com/rust-lang/regex/issues/981">rust-lang/regex#981</a>): Fix a bug where a word boundary could interact with prefix literal optimizations and lead to a false positive match.</li> </ul> <h1>1.8.0 (2023-04-20)</h1> <p>This is a sizeable release that will be soon followed by another sizeable release. Both of them will combined close over 40 existing issues and PRs.</p> <p>This first release, despite its size, essentially represent preparatory work for the second release, which will be even bigger. Namely, this release:</p> <ul> <li>Increases the MSRV to Rust 1.60.0, which was released about 1 year ago.</li> <li>Upgrades its dependency on <code>aho-corasick</code> to the recently release 1.0 version.</li> <li>Upgrades its dependency on <code>regex-syntax</code> to the simultaneously released <code>0.7</code> version. The changes to <code>regex-syntax</code> principally revolve around a rewrite of its literal extraction code and a number of simplifications and optimizations to its high-level intermediate representation (HIR).</li> </ul> <p>The second release, which will follow ~shortly after the release above, will contain a soup-to-nuts rewrite of every regex engine. This will be done by bringing <a href="https://github.com/BurntSushi/regex-automata"><code>regex-automata</code></a> into this repository, and then changing the <code>regex</code> crate to be nothing but an API shim layer on top of <code>regex-automata</code>'s API.</p> <p>These tandem releases are the culmination of about 3 years of on-and-off work that <a href="https://redirect.github.com/rust-lang/regex/issues/656">began in earnest in March 2020</a>.</p> <p>Because of the scale of changes involved in these releases, I would love to hear about your experience. Especially if you notice undocumented changes in behavior or performance changes (positive <em>or</em> negative).</p> <p>Most changes in the first release are listed below. For more details, please see the commit log, which reflects a linear and decently documented history of all changes.</p> <p>New features:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/regex/commit/4e29fceace6f3c189f78b1baaec6755f27d69ffb"><code>4e29fce</code></a> 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/8a7cb645cfd7c4e0f77482e8894155b93ca5fc3f"><code>8a7cb64</code></a> deps: bump regex-syntax to 0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/31c845296c5d34092aae637a02bf0d757a35f646"><code>31c8452</code></a> regex-syntax-0.7.1</li> <li><a href="https://github.com/rust-lang/regex/commit/960aadeba06420f8b979aa983fd55429c42d3e4a"><code>960aade</code></a> changelog: 1.8.1</li> <li><a href="https://github.com/rust-lang/regex/commit/f003d72578c84d3b849fa1c59724e003338a3ca1"><code>f003d72</code></a> impl: fix prefix literal matching bug</li> <li><a href="https://github.com/rust-lang/regex/commit/93316a3b1adc43cc12fab6c73a59f646658cd984"><code>93316a3</code></a> doc: update MSRV in README</li> <li><a href="https://github.com/rust-lang/regex/commit/070374f2878f23809a4e5ca0810d523f692c6e7e"><code>070374f</code></a> release: 1.8.0</li> <li><a href="https://github.com/rust-lang/regex/commit/a73c61cecbf24ebf70699269cca95b991dbe2e7e"><code>a73c61c</code></a> fuzz: get rid of 'named-profiles' feature</li> <li><a href="https://github.com/rust-lang/regex/commit/7cd75d22b56f60dc711976242a5cbca9e5922413"><code>7cd75d2</code></a> changelog: tweaks to 1.8 release entry</li> <li><a href="https://github.com/rust-lang/regex/commit/33898de870fc584ce912651590d8715d1178e667"><code>33898de</code></a> syntax: fix bug in new alternation literal analysis</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/regex/compare/1.7.3...1.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=regex&package-manager=cargo&previous-version=1.7.3&new-version=1.8.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-04-24 20:48:13 +03:00
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "resvg"
version = "0.34.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0e3d65cea36eefb28a020edb6e66341764e00cd4b426e0c1f0599b1adaa78f5"
dependencies = [
"gif",
"jpeg-decoder",
"log",
"pico-args",
"png",
"rgb",
"svgtypes",
"tiny-skia",
"usvg",
]
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "rgb"
version = "0.8.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20ec2d3e3fc7a92ced357df9cebd5a10b6fb2aa1ee797bf7e9ce2f17dffc8f59"
dependencies = [
"bytemuck",
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin 0.5.2",
"untrusted",
"web-sys",
"winapi",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "roxmltree"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8f595a457b6b8c6cda66a48503e92ee8d19342f905948f29c383200ec9eb1d8"
dependencies = [
"xmlparser",
]
[[package]]
name = "rsa"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
dependencies = [
"byteorder",
"const-oid",
"digest",
"num-bigint-dig",
"num-integer",
"num-iter",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"signature",
"spki",
"subtle",
"zeroize",
]
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
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"
2023-07-06 03:56:23 +03:00
version = "0.35.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 03:56:23 +03:00
checksum = "6380889b07a03b5ecf1d44dc9ede6fd2145d84b502a2a9ca0b03c48e0cc3220f"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
2023-04-03 05:06:55 +03:00
"errno 0.2.8",
2023-07-21 05:56:50 +03:00
"io-lifetimes",
"libc",
"linux-raw-sys 0.0.46",
2023-02-02 07:47:48 +03:00
"windows-sys 0.42.0",
]
2023-07-03 13:43:29 +03:00
[[package]]
name = "rustix"
2023-08-06 05:11:53 +03:00
version = "0.38.7"
2023-07-03 13:43:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 05:11:53 +03:00
checksum = "172891ebdceb05aa0005f533a6cbfca599ddd7d966f6f5d4d9b2e70478e70399"
2023-07-03 13:43:29 +03:00
dependencies = [
"bitflags 2.3.3",
2023-08-02 04:39:24 +03:00
"errno 0.3.2",
2023-07-03 13:43:29 +03:00
"libc",
2023-08-02 04:39:24 +03:00
"linux-raw-sys 0.4.5",
2023-07-03 13:43:29 +03:00
"windows-sys 0.48.0",
]
[[package]]
name = "rustls"
2023-08-04 05:47:04 +03:00
version = "0.21.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 05:47:04 +03:00
checksum = "1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb"
dependencies = [
"ring",
2023-07-17 05:21:54 +03:00
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
"base64",
]
2023-07-06 03:56:23 +03:00
[[package]]
name = "rustls-webpki"
2023-08-08 22:33:30 +03:00
version = "0.101.3"
2023-07-06 03:56:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "261e9e0888cba427c3316e6322805653c9425240b6fd96cee7cb671ab70ab8d0"
2023-07-06 03:56:23 +03:00
dependencies = [
"ring",
"untrusted",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "rustybuzz"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "162bdf42e261bee271b3957691018634488084ef577dddeb6420a9684cab2a6a"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
"bytemuck",
"smallvec",
"ttf-parser 0.18.1",
"unicode-bidi-mirroring",
"unicode-ccc",
"unicode-general-category",
"unicode-script",
]
2018-08-16 14:07:19 +03:00
[[package]]
name = "ryu"
2023-07-17 05:21:54 +03:00
version = "1.0.15"
2018-08-16 14:07:19 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
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"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
dependencies = [
"windows-sys 0.48.0",
]
2019-06-19 12:34:06 +03:00
[[package]]
name = "scopeguard"
2023-07-17 20:53:58 +03:00
version = "1.2.0"
2019-06-19 12:34:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 20:53:58 +03:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2019-06-19 12:34:06 +03:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "security-framework"
2023-07-24 06:39:17 +03:00
version = "2.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-24 06:39:17 +03:00
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
dependencies = [
2023-07-03 13:43:29 +03:00
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2023-07-24 06:39:17 +03:00
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-24 06:39:17 +03:00
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
2023-07-17 05:21:54 +03:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
2017-12-17 13:51:07 +03:00
[[package]]
name = "serde"
2023-08-08 22:33:30 +03:00
version = "1.0.183"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c"
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-08-08 22:33:30 +03:00
version = "1.0.183"
2017-12-17 13:51:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816"
2017-12-17 13:51:07 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
2017-12-17 13:51:07 +03:00
]
[[package]]
name = "serde_json"
chore(deps): Bump serde_json from 1.0.103 to 1.0.104 (#783) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.103 to 1.0.104. <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.104</h2> <ul> <li>Provide IntoDeserializer impl for &amp;serde_json::Value (<a href="https://redirect.github.com/serde-rs/json/issues/1045">#1045</a>, thanks <a href="https://github.com/ZetaNumbers"><code>@​ZetaNumbers</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/ab084832926cf7d733785c8801aa4fcf96523956"><code>ab08483</code></a> Release 1.0.104</li> <li><a href="https://github.com/serde-rs/json/commit/f6cc4f31a38228b59cc28ffc471a8d50fc20d2a3"><code>f6cc4f3</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/json/issues/1045">#1045</a> from ZetaNumbers/value-ref-into-deserializer</li> <li><a href="https://github.com/serde-rs/json/commit/8e8db8ce0cf066d8ef4cbe0167c3a97d18a49674"><code>8e8db8c</code></a> Implement IntoDeserializer for &amp;Value</li> <li><a href="https://github.com/serde-rs/json/commit/8f90eacf6c6335fbd925b1d663e46f4a7592ebba"><code>8f90eac</code></a> Delete inline attributes throughout test suite</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.103...v1.0.104">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.103&new-version=1.0.104)](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-07-27 05:57:22 +03:00
version = "1.0.104"
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.103 to 1.0.104 (#783) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.103 to 1.0.104. <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.104</h2> <ul> <li>Provide IntoDeserializer impl for &amp;serde_json::Value (<a href="https://redirect.github.com/serde-rs/json/issues/1045">#1045</a>, thanks <a href="https://github.com/ZetaNumbers"><code>@​ZetaNumbers</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/ab084832926cf7d733785c8801aa4fcf96523956"><code>ab08483</code></a> Release 1.0.104</li> <li><a href="https://github.com/serde-rs/json/commit/f6cc4f31a38228b59cc28ffc471a8d50fc20d2a3"><code>f6cc4f3</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/json/issues/1045">#1045</a> from ZetaNumbers/value-ref-into-deserializer</li> <li><a href="https://github.com/serde-rs/json/commit/8e8db8ce0cf066d8ef4cbe0167c3a97d18a49674"><code>8e8db8c</code></a> Implement IntoDeserializer for &amp;Value</li> <li><a href="https://github.com/serde-rs/json/commit/8f90eacf6c6335fbd925b1d663e46f4a7592ebba"><code>8f90eac</code></a> Delete inline attributes throughout test suite</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.103...v1.0.104">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.103&new-version=1.0.104)](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-07-27 05:57:22 +03:00
checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
2017-12-17 13:51:07 +03:00
dependencies = [
chore(deps): Bump serde_json from 1.0.97 to 1.0.99 (#728) Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.97 to 1.0.99. <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.99</h2> <ul> <li>Support serializing serde's <strong>option</strong> type in a map key (<a href="https://redirect.github.com/serde-rs/json/issues/1030">#1030</a>, thanks <a href="https://github.com/LPGhatguy"><code>@​LPGhatguy</code></a>)</li> </ul> <h2>v1.0.98</h2> <ul> <li>Update indexmap dependency used by &quot;preserve_order&quot; feature to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/serde-rs/json/commit/b4ec50ce7a47f1b344dd964de09a8be99fbe8300"><code>b4ec50c</code></a> Release 1.0.99</li> <li><a href="https://github.com/serde-rs/json/commit/11530529e86a5636558bcd352b2ad4d0c5f3ae6e"><code>1153052</code></a> Merge pull request 1030 from SecondHalfGames/map-key-serialize-some</li> <li><a href="https://github.com/serde-rs/json/commit/ba29a89a098dd5db6e889830bf1ac33837c1416e"><code>ba29a89</code></a> Release 1.0.98</li> <li><a href="https://github.com/serde-rs/json/commit/9508e50cbcce029d36f9988da26785aa1434e3c9"><code>9508e50</code></a> Merge pull request <a href="https://redirect.github.com/serde-rs/json/issues/1031">#1031</a> from serde-rs/indexmap</li> <li><a href="https://github.com/serde-rs/json/commit/706fc2b5592f415329d17df7b3777b56af909413"><code>706fc2b</code></a> Do all CI builds with old rustc using shim crate</li> <li><a href="https://github.com/serde-rs/json/commit/d4c98d05b993de5add76feec4eb371b1035d8f77"><code>d4c98d0</code></a> Move serde_json_test crate to own workspace</li> <li><a href="https://github.com/serde-rs/json/commit/e09d78f793b1fd189bf5ed59251ea906feb24df3"><code>e09d78f</code></a> Update indexmap dependency used for preserve_order feature to version 2</li> <li><a href="https://github.com/serde-rs/json/commit/51459078f38c851bb750d84ab9be4d8f40dc7693"><code>5145907</code></a> Delete unneeded conditional on preserve_order steps in CI</li> <li><a href="https://github.com/serde-rs/json/commit/b0fa9788f4f1fc03a9fc8066ea4c2aa0f26c5400"><code>b0fa978</code></a> Change MapKeySerializer::serialize_some to fall through instead of erroring</li> <li>See full diff in <a href="https://github.com/serde-rs/json/compare/v1.0.97...v1.0.99">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.97&new-version=1.0.99)](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-06-26 07:12:22 +03:00
"indexmap 2.0.0",
"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"
2023-07-21 05:56:50 +03:00
version = "0.9.25"
2018-07-25 15:02:31 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574"
2018-07-25 15:02:31 +03:00
dependencies = [
chore(deps): Bump serde_yaml from 0.9.21 to 0.9.22 (#727) Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.9.21 to 0.9.22. <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.22</h2> <ul> <li>Update indexmap dependency to version 2</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/serde-yaml/commit/060eb8669c7b26880f13aacfa77289236f1b0ea4"><code>060eb86</code></a> Release 0.9.22</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/b12ad38d63166851c75e6997c36a9ddf083fa6ea"><code>b12ad38</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/serde-yaml/issues/377">#377</a> from dtolnay/indexmap</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/c418ad56c3f7d32820f5e87d5791c499fdbaf238"><code>c418ad5</code></a> Update indexmap dependency to version 2</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/f1cd9e6b7f79488b53c2c1f059cea5c2f6d4fd27"><code>f1cd9e6</code></a> Remove .clippy.toml in favor of respecting rust-version from Cargo.toml</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/147103c4f4ba2e2212f18ed9db976b9f4896b383"><code>147103c</code></a> Show error details during miri setup in CI</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/622553f382bb2a491e583c5c4ea4c2d058fe68f0"><code>622553f</code></a> Fix unused import warnings in test under cfg miri</li> <li><a href="https://github.com/dtolnay/serde-yaml/commit/2037c7e62b467e1ae745d9bedff7ae2ad5d03850"><code>2037c7e</code></a> Fix new unused_mut detected by nightly-2023-04-30</li> <li>See full diff in <a href="https://github.com/dtolnay/serde-yaml/compare/0.9.21...0.9.22">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.21&new-version=0.9.22)](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-06-26 06:35:14 +03:00
"indexmap 2.0.0",
"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"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
version = "0.10.7"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
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
]
[[package]]
name = "signature"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
dependencies = [
"digest",
"rand_core",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "simd-adler32"
2023-08-02 04:39:24 +03:00
version = "0.3.7"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-02 04:39:24 +03:00
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "simplecss"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a11be7c62927d9427e9f40f3444d5499d868648e2edbc4e2116de69e7ec0e89d"
dependencies = [
"log",
]
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
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "slotmap"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"
dependencies = [
"version_check",
]
2018-02-21 13:37:31 +03:00
[[package]]
name = "smallvec"
2023-07-06 03:56:23 +03:00
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-06 03:56:23 +03:00
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
[[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",
]
2023-04-04 16:25:50 +03:00
[[package]]
name = "socket2"
2023-05-16 21:12:57 +03:00
version = "0.5.3"
2023-04-04 16:25:50 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 21:12:57 +03:00
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
2023-04-04 16:25:50 +03:00
dependencies = [
"libc",
2023-05-02 04:04:24 +03:00
"windows-sys 0.48.0",
2023-04-04 16:25:50 +03:00
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
[[package]]
name = "spki"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
dependencies = [
"base64ct",
"der",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "spreet"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "357c86676a23af570a68dbc1f59d2d6442d12ac7c94c41b8317f30706f5ca05d"
dependencies = [
"assert_fs",
"clap",
"crunch",
"exitcode",
"multimap",
"oxipng",
"png",
"rayon",
"resvg",
"serde",
"serde_json",
]
[[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 0.10.5",
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "8e58421b6bc416714d5115a2ca953718f6c621a51b68e4f4922aea5a4391a721"
dependencies = [
"sqlx-core",
"sqlx-macros",
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
]
[[package]]
name = "sqlx-core"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "dd4cef4251aabbae751a3710927945901ee1d97ee96d757f6880ebb9a79bfd53"
dependencies = [
"ahash 0.8.3",
"atoi",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dotenvy",
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive",
"futures-io",
"futures-util",
"hashlink",
"hex",
"indexmap 2.0.0",
"log",
"memchr",
"native-tls",
"once_cell",
"paste",
"percent-encoding",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
"sha2",
"smallvec",
"sqlformat",
"thiserror",
"tokio",
"tokio-stream",
"tracing",
"url",
"webpki-roots",
]
[[package]]
name = "sqlx-macros"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "208e3165167afd7f3881b16c1ef3f2af69fa75980897aac8874a0696516d12c2"
dependencies = [
"proc-macro2",
"quote",
"sqlx-core",
"sqlx-macros-core",
"syn 1.0.109",
]
[[package]]
name = "sqlx-macros-core"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "8a4a8336d278c62231d87f24e8a7a74898156e34c1c18942857be2acb29c7dfc"
dependencies = [
"dotenvy",
"either",
"heck",
"hex",
"once_cell",
"proc-macro2",
"quote",
"serde",
"serde_json",
"sha2",
"sqlx-core",
"sqlx-mysql",
"sqlx-sqlite",
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",
"tempfile",
"tokio",
"url",
]
[[package]]
name = "sqlx-mysql"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "8ca69bf415b93b60b80dc8fda3cb4ef52b2336614d8da2de5456cc942a110482"
dependencies = [
"atoi",
"base64",
"bitflags 2.3.3",
"byteorder",
"bytes",
"crc",
"digest",
"dotenvy",
"either",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"generic-array",
"hex",
"hkdf",
"hmac",
"itoa",
"log",
"md-5",
"memchr",
"once_cell",
"percent-encoding",
"rand",
"rsa",
"serde",
"sha1",
"sha2",
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-postgres"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "a0db2df1b8731c3651e204629dd55e52adbae0462fa1bdcbed56a2302c18181e"
dependencies = [
"atoi",
"base64",
"bitflags 2.3.3",
"byteorder",
"crc",
"dotenvy",
"etcetera",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"hex",
"hkdf",
"hmac",
"home",
"itoa",
"log",
"md-5",
"memchr",
"once_cell",
"rand",
"serde",
"serde_json",
"sha1",
"sha2",
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-sqlite"
2023-07-17 05:21:54 +03:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "be4c21bf34c7cae5b283efb3ac1bcc7670df7561124dc2f8bdc0b59be40f79a2"
dependencies = [
"atoi",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"libsqlite3-sys",
"log",
"percent-encoding",
"serde",
"sqlx-core",
"tracing",
"url",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "strict-num"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
dependencies = [
"float-cmp",
]
2017-10-09 14:29:03 +03:00
[[package]]
name = "stringprep"
2023-07-17 05:21:54 +03:00
version = "0.1.3"
2017-10-09 14:29:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da"
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"
2023-03-22 07:47:14 +03:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "104842d6278bf64aa9d2f182ba4bde31e8aec7a131d29b7f444bb9b344a09e2a"
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"
2023-03-22 07:47:14 +03:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "24420be405b590e2d746d83b01f09af673270cf80e9b003a5fa7b651c58c7d93"
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"
chore(deps): Bump subst from 0.2.2 to 0.2.3 (#784) Bumps [subst](https://github.com/fizyr/subst) from 0.2.2 to 0.2.3. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fizyr/subst/blob/main/CHANGELOG">subst's changelog</a>.</em></p> <blockquote> <h1>Version 0.2.3 - 2023-07-26</h1> <ul> <li>[add][minor] Support unsized <code>VariableMap</code> objects, such as <code>&amp;dyn VariableMap</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fizyr/subst/commit/16bc8ca6bf6d64e1a8c3f2d2686212ae7c8669c3"><code>16bc8ca</code></a> Bump version to 0.2.3.</li> <li><a href="https://github.com/fizyr/subst/commit/3a96c77f3e4ccfe084f3c1be9e277d65169ffc6e"><code>3a96c77</code></a> Allow publishing to crates.io.</li> <li><a href="https://github.com/fizyr/subst/commit/3e7b744550989334d4a1f802ec297ce4447ac417"><code>3e7b744</code></a> Update CHANGELOG.</li> <li><a href="https://github.com/fizyr/subst/commit/b68c7875e17d8154f581bd3306aebc3226080421"><code>b68c787</code></a> Add test for <code>&amp;dyn VariableMap</code> in the yaml submodule.</li> <li><a href="https://github.com/fizyr/subst/commit/0ff0225719a096893a7be6a9098ce434ac0aaf4f"><code>0ff0225</code></a> Merge pull request <a href="https://redirect.github.com/fizyr/subst/issues/5">#5</a> from andylizi/trait-object</li> <li><a href="https://github.com/fizyr/subst/commit/d351a2d5043a196e67e40a6e47c092aab85ccd90"><code>d351a2d</code></a> Add test for &amp;dyn VariableMap.</li> <li><a href="https://github.com/fizyr/subst/commit/504e15e53ba4d380f956945addf086c239d4a217"><code>504e15e</code></a> Merge pull request <a href="https://redirect.github.com/fizyr/subst/issues/6">#6</a> from andylizi/arbitrary-hasher</li> <li><a href="https://github.com/fizyr/subst/commit/93dac6d1f306baf960a2ba58b7110812b2ace735"><code>93dac6d</code></a> Support arbitrary hasher for <code>VariableMap</code></li> <li><a href="https://github.com/fizyr/subst/commit/e1be88539a31e5685f86d671cef52e7b0984cb41"><code>e1be885</code></a> Support <code>&amp;dyn VariableMap</code></li> <li>See full diff in <a href="https://github.com/fizyr/subst/compare/v0.2.2...v0.2.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=subst&package-manager=cargo&previous-version=0.2.2&new-version=0.2.3)](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-07-27 05:59:04 +03:00
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump subst from 0.2.2 to 0.2.3 (#784) Bumps [subst](https://github.com/fizyr/subst) from 0.2.2 to 0.2.3. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fizyr/subst/blob/main/CHANGELOG">subst's changelog</a>.</em></p> <blockquote> <h1>Version 0.2.3 - 2023-07-26</h1> <ul> <li>[add][minor] Support unsized <code>VariableMap</code> objects, such as <code>&amp;dyn VariableMap</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fizyr/subst/commit/16bc8ca6bf6d64e1a8c3f2d2686212ae7c8669c3"><code>16bc8ca</code></a> Bump version to 0.2.3.</li> <li><a href="https://github.com/fizyr/subst/commit/3a96c77f3e4ccfe084f3c1be9e277d65169ffc6e"><code>3a96c77</code></a> Allow publishing to crates.io.</li> <li><a href="https://github.com/fizyr/subst/commit/3e7b744550989334d4a1f802ec297ce4447ac417"><code>3e7b744</code></a> Update CHANGELOG.</li> <li><a href="https://github.com/fizyr/subst/commit/b68c7875e17d8154f581bd3306aebc3226080421"><code>b68c787</code></a> Add test for <code>&amp;dyn VariableMap</code> in the yaml submodule.</li> <li><a href="https://github.com/fizyr/subst/commit/0ff0225719a096893a7be6a9098ce434ac0aaf4f"><code>0ff0225</code></a> Merge pull request <a href="https://redirect.github.com/fizyr/subst/issues/5">#5</a> from andylizi/trait-object</li> <li><a href="https://github.com/fizyr/subst/commit/d351a2d5043a196e67e40a6e47c092aab85ccd90"><code>d351a2d</code></a> Add test for &amp;dyn VariableMap.</li> <li><a href="https://github.com/fizyr/subst/commit/504e15e53ba4d380f956945addf086c239d4a217"><code>504e15e</code></a> Merge pull request <a href="https://redirect.github.com/fizyr/subst/issues/6">#6</a> from andylizi/arbitrary-hasher</li> <li><a href="https://github.com/fizyr/subst/commit/93dac6d1f306baf960a2ba58b7110812b2ace735"><code>93dac6d</code></a> Support arbitrary hasher for <code>VariableMap</code></li> <li><a href="https://github.com/fizyr/subst/commit/e1be88539a31e5685f86d671cef52e7b0984cb41"><code>e1be885</code></a> Support <code>&amp;dyn VariableMap</code></li> <li>See full diff in <a href="https://github.com/fizyr/subst/compare/v0.2.2...v0.2.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=subst&package-manager=cargo&previous-version=0.2.2&new-version=0.2.3)](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-07-27 05:59:04 +03:00
checksum = "922e6f425703ed15913f82181de327ddef53057291b58a2fec24ecf9de0d14b8"
dependencies = [
"memchr",
"serde",
"serde_yaml",
"unicode-width",
]
[[package]]
name = "subtle"
2023-05-23 02:04:55 +03:00
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-23 02:04:55 +03:00
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "svgtypes"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed4b0611e7f3277f68c0fa18e385d9e2d26923691379690039548f867cef02a7"
dependencies = [
"kurbo",
"siphasher",
]
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"
2023-08-02 04:39:24 +03:00
version = "2.0.28"
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
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-02 04:39:24 +03:00
checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567"
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
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
name = "tempfile"
2023-08-08 22:33:30 +03:00
version = "3.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-08 22:33:30 +03:00
checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651"
dependencies = [
"cfg-if",
"fastrand",
2023-08-06 05:11:53 +03:00
"redox_syscall",
"rustix 0.38.7",
2023-06-13 06:05:54 +03:00
"windows-sys 0.48.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
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "termtree"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
[[package]]
name = "thiserror"
chore(deps): Bump thiserror from 1.0.43 to 1.0.44 (#780) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.43 to 1.0.44. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>1.0.44</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/54b70cfe109981e6349aebae4393c62c93cccafc"><code>54b70cf</code></a> Release 1.0.44</li> <li><a href="https://github.com/dtolnay/thiserror/commit/f86e8e5881f157f115c271b9ff578867cc91ba92"><code>f86e8e5</code></a> Opt in to generate-link-to-definition when building on docs.rs</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/1.0.43...1.0.44">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.43&new-version=1.0.44)](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-07-24 05:43:11 +03:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump thiserror from 1.0.43 to 1.0.44 (#780) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.43 to 1.0.44. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>1.0.44</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/54b70cfe109981e6349aebae4393c62c93cccafc"><code>54b70cf</code></a> Release 1.0.44</li> <li><a href="https://github.com/dtolnay/thiserror/commit/f86e8e5881f157f115c271b9ff578867cc91ba92"><code>f86e8e5</code></a> Opt in to generate-link-to-definition when building on docs.rs</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/1.0.43...1.0.44">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.43&new-version=1.0.44)](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-07-24 05:43:11 +03:00
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
chore(deps): Bump thiserror from 1.0.43 to 1.0.44 (#780) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.43 to 1.0.44. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>1.0.44</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/54b70cfe109981e6349aebae4393c62c93cccafc"><code>54b70cf</code></a> Release 1.0.44</li> <li><a href="https://github.com/dtolnay/thiserror/commit/f86e8e5881f157f115c271b9ff578867cc91ba92"><code>f86e8e5</code></a> Opt in to generate-link-to-definition when building on docs.rs</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/1.0.43...1.0.44">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.43&new-version=1.0.44)](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-07-24 05:43:11 +03:00
version = "1.0.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump thiserror from 1.0.43 to 1.0.44 (#780) Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.43 to 1.0.44. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/thiserror/releases">thiserror's releases</a>.</em></p> <blockquote> <h2>1.0.44</h2> <ul> <li>Documentation improvements</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/thiserror/commit/54b70cfe109981e6349aebae4393c62c93cccafc"><code>54b70cf</code></a> Release 1.0.44</li> <li><a href="https://github.com/dtolnay/thiserror/commit/f86e8e5881f157f115c271b9ff578867cc91ba92"><code>f86e8e5</code></a> Opt in to generate-link-to-definition when building on docs.rs</li> <li>See full diff in <a href="https://github.com/dtolnay/thiserror/compare/1.0.43...1.0.44">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=thiserror&package-manager=cargo&previous-version=1.0.43&new-version=1.0.44)](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-07-24 05:43:11 +03:00
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if",
"once_cell",
]
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-08-04 05:47:04 +03:00
version = "0.3.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-04 05:47:04 +03:00
checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea"
dependencies = [
2023-08-02 04:39:24 +03:00
"deranged",
"itoa",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-05-09 11:39:31 +03:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:39:31 +03:00
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
[[package]]
name = "time-macros"
2023-08-02 04:39:24 +03:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-02 04:39:24 +03:00
checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd"
dependencies = [
"time-core",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "tiny-skia"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7db11798945fa5c3e5490c794ccca7c6de86d3afdd54b4eb324109939c6f37bc"
dependencies = [
"arrayref",
"arrayvec",
"bytemuck",
"cfg-if",
"log",
"png",
"tiny-skia-path",
]
[[package]]
name = "tiny-skia-path"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f60aa35c89ac2687ace1a2556eaaea68e8c0d47408a2e3e7f5c98a489e7281c"
dependencies = [
"arrayref",
"bytemuck",
"strict-num",
]
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"
chore(deps): Bump tokio from 1.29.1 to 1.30.0 (#798) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.29.1 to 1.30.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.30.0</h2> <h1>1.30.0 (August 9, 2023)</h1> <p>This release bumps the MSRV of Tokio to 1.63. (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</p> <h3>Changed</h3> <ul> <li>tokio: reduce LLVM code generation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>)</li> <li>io: support <code>--cfg mio_unsupported_force_poll_poll</code> flag (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5881">#5881</a>)</li> <li>sync: make <code>const_new</code> methods always available (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5885">#5885</a>)</li> <li>sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li>rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> </ul> <h3>Added</h3> <ul> <li>sync: add <code>broadcast::Sender::new</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>)</li> <li>net: implement <code>UCred</code> for espidf (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>)</li> <li>fs: add <code>File::options()</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>)</li> <li>time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li>process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> </ul> <h3>Removed</h3> <ul> <li>tokio: removed unused <code>tokio_*</code> cfgs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5890">#5890</a>)</li> <li>remove build script to speed up compilation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</li> </ul> <h3>Documented</h3> <ul> <li>sync: mention lagging in docs for <code>broadcast::send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>)</li> <li>runtime: expand on sharing runtime docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>)</li> <li>io: use vec in example for <code>AsyncReadExt::read_exact</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>)</li> <li>time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li>process: fix <code>raw_arg</code> not showing up in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add runtime ID (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>)</li> <li>rt: initial implementation of new threaded runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5820">tokio-rs/tokio#5820</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5823">tokio-rs/tokio#5823</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5824">tokio-rs/tokio#5824</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5829">tokio-rs/tokio#5829</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5858">tokio-rs/tokio#5858</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5859">tokio-rs/tokio#5859</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5863">tokio-rs/tokio#5863</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5864">tokio-rs/tokio#5864</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5865">tokio-rs/tokio#5865</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5868">tokio-rs/tokio#5868</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5869">tokio-rs/tokio#5869</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/4c220af777b1b832f4a00b5b261de77c22a7209b"><code>4c220af</code></a> chore: prepare Tokio v1.30.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5917">#5917</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/0a631f88e8fd5d347c8297c9114d25382889d395"><code>0a631f8</code></a> process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/ee44dc98d8de245092b4155dc6ffe35f1c886e11"><code>ee44dc9</code></a> ci: fix MIRI tests (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5919">#5919</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/51cffbb74f1d2d09fff4e3431199641620c1b3b5"><code>51cffbb</code></a> time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/8832e936b1b86946ce802c5494bd8d575f8ba3a3"><code>8832e93</code></a> rt(alt): fix a number of concurrency bugs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5907">#5907</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/dbda2045f18713f752902226d7bad24037b5788b"><code>dbda204</code></a> time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/7c54fdce3e68566e346b7999ef1ff98bb1977bab"><code>7c54fdc</code></a> rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/38d1bcd9df6af2de436c5f898829d071f8e46988"><code>38d1bcd</code></a> sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/52e65102154cbbd49c3af4e6d208609476cdfdb4"><code>52e6510</code></a> runtime: fix flaky test <code>wake_while_rt_is_dropping</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5905">#5905</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/e5e88551d2be7655ee71771533168d4fe9ea7793"><code>e5e8855</code></a> Update CI config (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5893">#5893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.29.1...tokio-1.30.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.29.1&new-version=1.30.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-10 22:50:13 +03:00
version = "1.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
chore(deps): Bump tokio from 1.29.1 to 1.30.0 (#798) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.29.1 to 1.30.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.30.0</h2> <h1>1.30.0 (August 9, 2023)</h1> <p>This release bumps the MSRV of Tokio to 1.63. (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</p> <h3>Changed</h3> <ul> <li>tokio: reduce LLVM code generation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>)</li> <li>io: support <code>--cfg mio_unsupported_force_poll_poll</code> flag (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5881">#5881</a>)</li> <li>sync: make <code>const_new</code> methods always available (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5885">#5885</a>)</li> <li>sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li>rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> </ul> <h3>Added</h3> <ul> <li>sync: add <code>broadcast::Sender::new</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>)</li> <li>net: implement <code>UCred</code> for espidf (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>)</li> <li>fs: add <code>File::options()</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>)</li> <li>time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li>process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> </ul> <h3>Removed</h3> <ul> <li>tokio: removed unused <code>tokio_*</code> cfgs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5890">#5890</a>)</li> <li>remove build script to speed up compilation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</li> </ul> <h3>Documented</h3> <ul> <li>sync: mention lagging in docs for <code>broadcast::send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>)</li> <li>runtime: expand on sharing runtime docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>)</li> <li>io: use vec in example for <code>AsyncReadExt::read_exact</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>)</li> <li>time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li>process: fix <code>raw_arg</code> not showing up in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add runtime ID (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>)</li> <li>rt: initial implementation of new threaded runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5820">tokio-rs/tokio#5820</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5823">tokio-rs/tokio#5823</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5824">tokio-rs/tokio#5824</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5829">tokio-rs/tokio#5829</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5858">tokio-rs/tokio#5858</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5859">tokio-rs/tokio#5859</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5863">tokio-rs/tokio#5863</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5864">tokio-rs/tokio#5864</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5865">tokio-rs/tokio#5865</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5868">tokio-rs/tokio#5868</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5869">tokio-rs/tokio#5869</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/4c220af777b1b832f4a00b5b261de77c22a7209b"><code>4c220af</code></a> chore: prepare Tokio v1.30.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5917">#5917</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/0a631f88e8fd5d347c8297c9114d25382889d395"><code>0a631f8</code></a> process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/ee44dc98d8de245092b4155dc6ffe35f1c886e11"><code>ee44dc9</code></a> ci: fix MIRI tests (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5919">#5919</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/51cffbb74f1d2d09fff4e3431199641620c1b3b5"><code>51cffbb</code></a> time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/8832e936b1b86946ce802c5494bd8d575f8ba3a3"><code>8832e93</code></a> rt(alt): fix a number of concurrency bugs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5907">#5907</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/dbda2045f18713f752902226d7bad24037b5788b"><code>dbda204</code></a> time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/7c54fdce3e68566e346b7999ef1ff98bb1977bab"><code>7c54fdc</code></a> rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/38d1bcd9df6af2de436c5f898829d071f8e46988"><code>38d1bcd</code></a> sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/52e65102154cbbd49c3af4e6d208609476cdfdb4"><code>52e6510</code></a> runtime: fix flaky test <code>wake_while_rt_is_dropping</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5905">#5905</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/e5e88551d2be7655ee71771533168d4fe9ea7793"><code>e5e8855</code></a> Update CI config (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5893">#5893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.29.1...tokio-1.30.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.29.1&new-version=1.30.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-10 22:50:13 +03:00
checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd"
dependencies = [
chore(deps): Bump tokio from 1.28.2 to 1.29.0 (#733) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.2 to 1.29.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.29.0</h2> <p>Technically a breaking change, the <code>Send</code> implementation is removed from <code>runtime::EnterGuard</code>. This change fixes a bug and should not impact most users.</p> <h3>Breaking</h3> <ul> <li>rt: <code>EnterGuard</code> should not be <code>Send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>)</li> </ul> <h3>Fixed</h3> <ul> <li>fs: reduce blocking ops in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>)</li> <li>rt: fix possible starvation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>)</li> <li>rt: fix stacked borrows issue in <code>JoinSet</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>)</li> <li>rt: panic if <code>EnterGuard</code> dropped incorrect order (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>)</li> <li>time: do not overflow to signal value (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>)</li> <li>fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> </ul> <h3>Changed</h3> <ul> <li>rt: reduce time to poll tasks scheduled from outside the runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>)</li> </ul> <h3>Added</h3> <ul> <li>net: add uds doc alias for unix sockets (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>)</li> <li>rt: add metric for number of tasks (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5628">#5628</a>)</li> <li>sync: implement more traits for channel errors (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5666">#5666</a>)</li> <li>net: add nodelay methods on TcpSocket (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5672">#5672</a>)</li> <li>sync: add <code>broadcast::Receiver::blocking_recv</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5690">#5690</a>)</li> <li>process: add <code>raw_arg</code> method to <code>Command</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5704">#5704</a>)</li> <li>io: support PRIORITY epoll events (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5566">#5566</a>)</li> <li>task: add <code>JoinSet::poll_join_next</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5721">#5721</a>)</li> <li>net: add support for Redox OS (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5790">#5790</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add the ability to dump task backtraces (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5608">#5608</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5676">#5676</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5708">#5708</a>, <a href="https://redirect.github.com/tokio-rs/tokio/issues/5717">#5717</a>)</li> <li>rt: instrument task poll times with a histogram (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5685">#5685</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5766">#5766</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5766">tokio-rs/tokio#5766</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5653">#5653</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5653">tokio-rs/tokio#5653</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5686">#5686</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5686">tokio-rs/tokio#5686</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5712">#5712</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5712">tokio-rs/tokio#5712</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5693">#5693</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5693">tokio-rs/tokio#5693</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5772">#5772</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5772">tokio-rs/tokio#5772</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5710">#5710</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5710">tokio-rs/tokio#5710</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5803">tokio-rs/tokio#5803</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5705">#5705</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5705">tokio-rs/tokio#5705</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5720">#5720</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5720">tokio-rs/tokio#5720</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5659">#5659</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5659">tokio-rs/tokio#5659</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/48c55768fd6ae47d1c015b154a0ebd2579688359"><code>48c5576</code></a> chore: prepare Tokio v1.29.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5826">#5826</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/657fd883d2ba5d110b2fd522ce9bd08947e03d7c"><code>657fd88</code></a> task: add guarantee about when a spawned task may be polled (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5816">#5816</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6b076a27437a94f0c0e4d506188bef26c53896ee"><code>6b076a2</code></a> fs: wait for in-flight ops before cloning <code>File</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5803">#5803</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/910a1e2fcf8ebafd41c2841144c3a1037af7dc40"><code>910a1e2</code></a> io: fix <code>futures_io::AsyncSeek</code> implementaion for <code>Compat</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5783">#5783</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/6d25a00145d0dfed10c93eb37704fde88967341c"><code>6d25a00</code></a> fs: update cfg attr in <code>fs::read_dir</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5806">#5806</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/78bf8a9e5e72430274467cebce4cc37096508c18"><code>78bf8a9</code></a> sync: replace Poll::Ready with Ready (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5815">#5815</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/b8af5aad16baec0d2713453aa03db5ff29639010"><code>b8af5aa</code></a> task: add spawn_blocking methods to JoinMap (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5797">#5797</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/2e62374e4a643015ea9ecf5a1d012c3429eed42f"><code>2e62374</code></a> rt: pad the task struct to avoid false sharing (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5809">#5809</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/56c43655845b109f59a8cdd5d31d36992fc3ecef"><code>56c4365</code></a> tokio: improve taskdump documentation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5805">#5805</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/fb0d305a7a78a97f032830c9e07bc932f093e165"><code>fb0d305</code></a> ci: build tokio for redox-os (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5800">#5800</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.28.2...tokio-1.29.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.28.2&new-version=1.29.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>
2023-06-28 09:14:48 +03:00
"backtrace",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
chore(deps): Bump tokio from 1.29.1 to 1.30.0 (#798) Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.29.1 to 1.30.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.30.0</h2> <h1>1.30.0 (August 9, 2023)</h1> <p>This release bumps the MSRV of Tokio to 1.63. (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</p> <h3>Changed</h3> <ul> <li>tokio: reduce LLVM code generation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>)</li> <li>io: support <code>--cfg mio_unsupported_force_poll_poll</code> flag (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5881">#5881</a>)</li> <li>sync: make <code>const_new</code> methods always available (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5885">#5885</a>)</li> <li>sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li>rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> </ul> <h3>Added</h3> <ul> <li>sync: add <code>broadcast::Sender::new</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>)</li> <li>net: implement <code>UCred</code> for espidf (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>)</li> <li>fs: add <code>File::options()</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>)</li> <li>time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li>process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> </ul> <h3>Removed</h3> <ul> <li>tokio: removed unused <code>tokio_*</code> cfgs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5890">#5890</a>)</li> <li>remove build script to speed up compilation (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5887">#5887</a>)</li> </ul> <h3>Documented</h3> <ul> <li>sync: mention lagging in docs for <code>broadcast::send</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>)</li> <li>runtime: expand on sharing runtime docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>)</li> <li>io: use vec in example for <code>AsyncReadExt::read_exact</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>)</li> <li>time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li>process: fix <code>raw_arg</code> not showing up in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>)</li> </ul> <h3>Unstable</h3> <ul> <li>rt: add runtime ID (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>)</li> <li>rt: initial implementation of new threaded runtime (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>)</li> </ul> <p><a href="https://redirect.github.com/tokio-rs/tokio/issues/5820">#5820</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5820">tokio-rs/tokio#5820</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5823">#5823</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5823">tokio-rs/tokio#5823</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5824">#5824</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5824">tokio-rs/tokio#5824</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5829">tokio-rs/tokio#5829</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5858">#5858</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5858">tokio-rs/tokio#5858</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5859">#5859</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5859">tokio-rs/tokio#5859</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5863">#5863</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5863">tokio-rs/tokio#5863</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5864">#5864</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5864">tokio-rs/tokio#5864</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5865">#5865</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5865">tokio-rs/tokio#5865</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5868">#5868</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5868">tokio-rs/tokio#5868</a> <a href="https://redirect.github.com/tokio-rs/tokio/issues/5869">#5869</a>: <a href="https://redirect.github.com/tokio-rs/tokio/pull/5869">tokio-rs/tokio#5869</a></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tokio-rs/tokio/commit/4c220af777b1b832f4a00b5b261de77c22a7209b"><code>4c220af</code></a> chore: prepare Tokio v1.30.0 release (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5917">#5917</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/0a631f88e8fd5d347c8297c9114d25382889d395"><code>0a631f8</code></a> process: add <code>{ChildStd*}::into_owned_{fd, handle}</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5899">#5899</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/ee44dc98d8de245092b4155dc6ffe35f1c886e11"><code>ee44dc9</code></a> ci: fix MIRI tests (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5919">#5919</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/51cffbb74f1d2d09fff4e3431199641620c1b3b5"><code>51cffbb</code></a> time: mark <code>Sleep</code> as <code>!Unpin</code> in docs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5916">#5916</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/8832e936b1b86946ce802c5494bd8d575f8ba3a3"><code>8832e93</code></a> rt(alt): fix a number of concurrency bugs (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5907">#5907</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/dbda2045f18713f752902226d7bad24037b5788b"><code>dbda204</code></a> time: implement extra reset variants for <code>Interval</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5878">#5878</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/7c54fdce3e68566e346b7999ef1ff98bb1977bab"><code>7c54fdc</code></a> rt: pop at least one task from inject queue (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5908">#5908</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/38d1bcd9df6af2de436c5f898829d071f8e46988"><code>38d1bcd</code></a> sync: avoid false sharing in mpsc channel (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5829">#5829</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/52e65102154cbbd49c3af4e6d208609476cdfdb4"><code>52e6510</code></a> runtime: fix flaky test <code>wake_while_rt_is_dropping</code> (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5905">#5905</a>)</li> <li><a href="https://github.com/tokio-rs/tokio/commit/e5e88551d2be7655ee71771533168d4fe9ea7793"><code>e5e8855</code></a> Update CI config (<a href="https://redirect.github.com/tokio-rs/tokio/issues/5893">#5893</a>)</li> <li>Additional commits viewable in <a href="https://github.com/tokio-rs/tokio/compare/tokio-1.29.1...tokio-1.30.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tokio&package-manager=cargo&previous-version=1.29.1&new-version=1.30.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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-10 22:50:13 +03:00
"socket2 0.5.3",
"tokio-macros",
2023-05-02 04:04:24 +03:00
"windows-sys 0.48.0",
]
[[package]]
name = "tokio-macros"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
[[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"
2023-04-04 16:25:50 +03:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-04 16:25:50 +03:00
checksum = "6e89f6234aa8fd43779746012fcf53603cdb91fdd8399aa0de868c2d56b6dde1"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"fallible-iterator",
"futures-channel",
"futures-util",
"log",
"parking_lot",
"percent-encoding",
"phf",
"pin-project-lite",
"postgres-protocol",
"postgres-types",
2023-05-16 21:12:57 +03:00
"socket2 0.5.3",
"tokio",
"tokio-util",
]
[[package]]
name = "tokio-stream"
2023-05-02 04:04:24 +03:00
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 04:04:24 +03:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2023-05-02 04:04:24 +03:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-02 04:04:24 +03:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
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-attributes",
"tracing-core",
2020-09-13 19:42:44 +03:00
]
[[package]]
name = "tracing-attributes"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
]
2020-09-13 19:42:44 +03:00
[[package]]
name = "tracing-core"
2023-05-16 21:12:57 +03:00
version = "0.1.31"
2020-09-13 19:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-16 21:12:57 +03:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2020-09-13 19:42:44 +03:00
dependencies = [
"once_cell",
2017-09-30 13:55:44 +03:00
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "ttf-parser"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0609f771ad9c6155384897e1df4d948e692667cc0588548b68eb44d052b27633"
[[package]]
name = "ttf-parser"
version = "0.19.1"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a464a4b34948a5f67fddd2b823c62d9d92e44be75058b99939eae6c5b6960b33"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "typed-arena"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
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-22 07:47:14 +03:00
version = "0.3.13"
2017-09-30 13:55:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2017-09-30 13:55:44 +03:00
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "unicode-bidi-mirroring"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56d12260fb92d52f9008be7e4bca09f584780eb2266dc8fecc6a192bec561694"
[[package]]
name = "unicode-ccc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc2520efa644f8268dce4dcd3050eaa7fc044fca03961e9998ac7e2e92b77cf1"
[[package]]
name = "unicode-general-category"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
[[package]]
name = "unicode-ident"
2023-07-17 05:21:54 +03:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
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
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "unicode-script"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d817255e1bed6dfd4ca47258685d14d2bdcfbc64fdc9e3819bd5848057b8ecc"
[[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"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "unicode-vo"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
[[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"
2023-07-17 05:21:54 +03:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa"
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2017-10-09 14:29:03 +03:00
[[package]]
name = "url"
2023-06-13 06:05:54 +03:00
version = "2.4.0"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
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
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "usvg"
version = "0.34.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2304b933107198a910c1f3219acb65246f2b148f862703cffd51c6e62156abe"
dependencies = [
"base64",
"log",
"pico-args",
"usvg-parser",
"usvg-text-layout",
"usvg-tree",
"xmlwriter",
]
[[package]]
name = "usvg-parser"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12b940fea80394e3b14cb21c83fa1b8f8a41023c25929bba68bb84a76193ebed"
dependencies = [
"data-url",
"flate2",
"imagesize",
"kurbo",
"log",
"roxmltree",
"simplecss",
"siphasher",
"svgtypes",
"usvg-tree",
]
[[package]]
name = "usvg-text-layout"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69dfd6119f431aa7e969b4a69f9cc8b9ae37b8ae85bb26780ccfa3beaf8b71eb"
dependencies = [
"fontdb",
"kurbo",
"log",
"rustybuzz",
"unicode-bidi",
"unicode-script",
"unicode-vo",
"usvg-tree",
]
[[package]]
name = "usvg-tree"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3185eb13b6e3d3cf1817d29612251cc308d5a7e5e6235362e67efe832435c6d9"
dependencies = [
"rctree",
"strict-num",
"svgtypes",
"tiny-skia-path",
]
2023-04-03 05:06:55 +03:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2019-01-12 15:28:16 +03:00
[[package]]
name = "uuid"
2023-07-17 20:53:58 +03:00
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 20:53:58 +03:00
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
[[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"
2023-03-22 07:47:14 +03:00
version = "2.3.3"
2019-01-12 15:28:16 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-22 07:47:14 +03:00
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
2019-01-12 15:28:16 +03:00
dependencies = [
"same-file",
"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-06-13 06:05:54 +03:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-13 06:05:54 +03:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2023-06-13 06:05:54 +03:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-13 06:05:54 +03:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
dependencies = [
"proc-macro2",
"quote",
2023-08-02 04:39:24 +03:00
"syn 2.0.28",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-13 06:05:54 +03:00
version = "0.2.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
[[package]]
name = "web-sys"
2023-06-13 06:05:54 +03:00
version = "0.3.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-13 06:05:54 +03:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
2023-07-17 05:21:54 +03:00
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 05:21:54 +03:00
checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
dependencies = [
2023-07-17 05:21:54 +03:00
"rustls-webpki",
]
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "weezl"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
[[package]]
name = "whoami"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
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 = [
2023-04-08 09:38:52 +03:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2022-05-03 12:12:54 +03:00
]
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-06-13 06:05:54 +03:00
"windows-targets",
2023-04-08 09:38:52 +03:00
]
[[package]]
name = "windows-targets"
2023-07-03 13:43:29 +03:00
version = "0.48.1"
2023-04-08 09:38:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-03 13:43:29 +03:00
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2023-04-08 09:38:52 +03:00
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2023-02-02 07:47:48 +03:00
]
[[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"
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
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
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
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
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
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
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
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"
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[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
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
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
2023-04-08 09:38:52 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "wyz"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
dependencies = [
"tap",
]
[[package]]
name = "xmlparser"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d25c75bf9ea12c4040a97f829154768bbbce366287e2dc044af160cd79a13fd"
[[package]]
name = "xmlwriter"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
[[package]]
name = "zeroize"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
Add dynamic sprites support (#715) Dynamically create image sprites for MapLibre rendering, given a directory with images. ### TODO * [x] Work with @flother to merge these PRs * [x] https://github.com/flother/spreet/pull/59 (must have) * [x] https://github.com/flother/spreet/pull/57 * [x] https://github.com/flother/spreet/pull/56 * [ ] https://github.com/flother/spreet/pull/62 (not required but nice to have, can upgrade later without any code changes) * [x] Add docs to the book * [x] Add CLI param, e.g. `--sprite <dir_path>` * [x] Don't output `.sprites` in auto-genned config when not in use ### API Per [MapLibre sprites API](https://maplibre.org/maplibre-style-spec/sprite/), we need to support the following: * `/sprite/<sprite_id>.json` metadata about the sprite file - all coming from a single directory * `/sprite/<sprite_id>.png` all images combined into a single PNG * `/sprite/<sprite_id>@2x.json` same but for high DPI devices * `/sprite/<sprite_id>@2x.png` Multiple sprite_id values can be combined into one sprite with the same pattern as for tile joining: `/sprite/<sprite_id1>,<sprite_id2>,...,<sprite_idN>[.json|.png|@2x.json|@2x.png]`. No ID renaming is done, so identical names will override one another. ### Configuration [Config file](https://maplibre.org/martin/config-file.html) and possibly CLI should have a simple option to serve sprites. The configuration may look similar to how mbtiles and pmtiles are configured: ```yaml # Publish sprite images sprites: paths: # scan this whole dir, matching all image files, and publishing it as "my_images" sprite source - /path/to/my_images sources: # named source matching source name to a directory my_sprites: /path/to/some_dir ``` Implement #705
2023-06-16 15:19:47 +03:00
[[package]]
name = "zopfli"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e0650ae6a051326d798eb099b632f1afb0d323d25ee4ec82ffb0779512084d5"
dependencies = [
"crc32fast",
"log",
"simd-adler32",
"typed-arena",
]
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-07-21 05:56:50 +03:00
version = "0.12.4"
2023-01-23 09:48:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c"
2023-01-23 09:48:53 +03:00
dependencies = [
2023-07-21 05:56:50 +03:00
"zstd-safe 6.0.6",
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-07-21 05:56:50 +03:00
version = "6.0.6"
2023-01-23 09:48:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 05:56:50 +03:00
checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581"
2023-01-23 09:48:53 +03:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2023-04-08 09:38:52 +03:00
version = "2.0.8+zstd.1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-08 09:38:52 +03:00
checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c"
dependencies = [
"cc",
"libc",
2023-01-12 00:35:48 +03:00
"pkg-config",
2018-02-21 13:37:31 +03:00
]