Skip to content

Commit

Permalink
chore(deps): bump the minor group with 2 updates (#269)
Browse files Browse the repository at this point in the history
Bumps the minor group with 2 updates:
[toml](https://github.com/toml-rs/toml) and
[uuid](https://github.com/uuid-rs/uuid).

Updates `toml` from 0.8.19 to 0.8.20
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/toml-rs/toml/commit/f550dbfd7dd2bb50c65033f7d0620271151c1734"><code>f550dbf</code></a>
chore: Release</li>
<li><a
href="https://github.com/toml-rs/toml/commit/25587db207623b9b47df1d6f09fb34332f780d22"><code>25587db</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/toml-rs/toml/commit/fbc77ec290053f83d5f31dce34282536a5a9665a"><code>fbc77ec</code></a>
Merge pull request <a
href="https://redirect.github.com/toml-rs/toml/issues/829">#829</a> from
tisonkun/map-get-kv</li>
<li><a
href="https://github.com/toml-rs/toml/commit/4605a6422fa808d58ba55f6ff7d917ef96e88e72"><code>4605a64</code></a>
fea: impl Map get_key_value</li>
<li><a
href="https://github.com/toml-rs/toml/commit/8efc81e1247df79709a79a91f3a7f572ca5f8ca3"><code>8efc81e</code></a>
chore(deps): Update Rust crate serde_json to v1.0.138 (<a
href="https://redirect.github.com/toml-rs/toml/issues/828">#828</a>)</li>
<li><a
href="https://github.com/toml-rs/toml/commit/15496f1b872d092af135455cbfbb9facfee5bfd8"><code>15496f1</code></a>
chore: Release</li>
<li><a
href="https://github.com/toml-rs/toml/commit/1131ce85a51fc9f22cf8669a02c65ebd15379f5a"><code>1131ce8</code></a>
docs: Update changelog</li>
<li><a
href="https://github.com/toml-rs/toml/commit/4776fca705c78ad9e5c0edfbeb0fcf1f6efdf35c"><code>4776fca</code></a>
Merge pull request <a
href="https://redirect.github.com/toml-rs/toml/issues/827">#827</a> from
epage/winnow07</li>
<li><a
href="https://github.com/toml-rs/toml/commit/754769b8f5875e043e37158d7aaa1c12acb847da"><code>754769b</code></a>
chore: Upgrade to Winnow 0.7</li>
<li><a
href="https://github.com/toml-rs/toml/commit/9415da22de8420511cb854cb70289ed5d013722c"><code>9415da2</code></a>
refactor(parser): Switch to ModalParser</li>
<li>Additional commits viewable in <a
href="https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20">compare
view</a></li>
</ul>
</details>
<br />

Updates `uuid` from 1.12.1 to 1.13.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/uuid-rs/uuid/releases">uuid's
releases</a>.</em></p>
<blockquote>
<h2>1.13.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix <code>wasm32</code> with <code>atomics</code> by <a
href="https://github.com/bushrat011899"><code>@​bushrat011899</code></a>
in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/797">uuid-rs/uuid#797</a></li>
<li>Prepare for 1.13.1 release by <a
href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/799">uuid-rs/uuid#799</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/bushrat011899"><code>@​bushrat011899</code></a>
made their first contribution in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/797">uuid-rs/uuid#797</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1">https://github.com/uuid-rs/uuid/compare/1.13.0...1.13.1</a></p>
<h2>1.13.0</h2>
<h2>:warning: Potential Breakage</h2>
<p>This release updates our version of <code>getrandom</code> to
<code>0.3</code> and <code>rand</code> to <code>0.9</code>. It is a
<strong>potentially breaking change</strong> for the following
users:</p>
<h3>no-std users who enable the <code>rng</code> feature</h3>
<p><code>uuid</code> still uses <code>getrandom</code> by default on
these platforms. Upgrade your version of <code>getrandom</code> and <a
href="https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend">follow
its new docs</a> on configuring a custom backend.</p>
<h3><code>wasm32-unknown-unknown</code> users who enable the
<code>rng</code> feature without the <code>js</code> feature</h3>
<p>Upgrade your version of <code>getrandom</code> and <a
href="https://docs.rs/getrandom/0.3.1/getrandom/index.html#custom-backend">follow
its new docs</a> on configuring a backend.</p>
<p>You'll also need to enable the <code>rng-getrandom</code> or
<code>rng-rand</code> feature of <code>uuid</code> to force it to use
<code>getrandom</code> as its backend:</p>
<pre lang="diff"><code>[dependencies.uuid]
version = &quot;1.13.0&quot;
- features = [&quot;v4&quot;]
+ features = [&quot;v4&quot;, &quot;rng-getrandom&quot;]
<p>[dependencies.getrandom]
version = &quot;0.3&quot;
</code></pre></p>
<p>If you're on <code>wasm32-unknown-unknown</code> and using the
<code>js</code> feature of <code>uuid</code> you shouldn't see any
breakage. We've kept this behavior by vendoring in
<code>getrandom</code>'s web-based backend when the <code>js</code>
feature is enabled.</p>
<h2>What's Changed</h2>
<ul>
<li>Update <code>getrandom</code> to <code>0.3</code> and
<code>rand</code> to <code>0.9</code> by <a
href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/793">uuid-rs/uuid#793</a></li>
<li>Support forcing <code>getrandom</code> on
<code>wasm32-unknown-unknown</code> without JavaScript by <a
href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/794">uuid-rs/uuid#794</a></li>
<li>Prepare for 1.13.0 release by <a
href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a
href="https://redirect.github.com/uuid-rs/uuid/pull/795">uuid-rs/uuid#795</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0">https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/uuid-rs/uuid/commit/54214179a6ef707e941cbffc5b14589e4dd399d0"><code>5421417</code></a>
Merge pull request <a
href="https://redirect.github.com/uuid-rs/uuid/issues/799">#799</a> from
uuid-rs/cargo/1.13.1</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/df5867440a0f7d31a701a9345f03c7bd7e98eee6"><code>df58674</code></a>
prepare for 1.13.1 release</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/f175242553b3913d63a1dc21e4bf0a87aefa8163"><code>f175242</code></a>
Merge pull request <a
href="https://redirect.github.com/uuid-rs/uuid/issues/797">#797</a> from
bushrat011899/wasm32_atomics</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/65c31b37091ce3e6a2321951f5bcdebbd6edbcbb"><code>65c31b3</code></a>
Include CI Update</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/17673a13a8c7da7a6a29d8bb07fd98cac7a54ab5"><code>17673a1</code></a>
Fix <code>wasm32</code> with <code>atomics</code></li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/1cf1433f07b10bb0f77ae20b1880e3e81d857bc0"><code>1cf1433</code></a>
Merge pull request <a
href="https://redirect.github.com/uuid-rs/uuid/issues/795">#795</a> from
uuid-rs/cargo/1.13.0</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/ded7a1ee75c9abd8f84028567346e5b276a914d6"><code>ded7a1e</code></a>
prepare for 1.13.0 release</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/6494c4b0f261f23837fd00855d2628c393d77e72"><code>6494c4b</code></a>
Merge pull request <a
href="https://redirect.github.com/uuid-rs/uuid/issues/794">#794</a> from
uuid-rs/feat/getrandom-wasm32</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/9e7300ca4aa4d6b56a1599f3ebd9d7e22f324c4d"><code>9e7300c</code></a>
fix some warnings on various feature enablement</li>
<li><a
href="https://github.com/uuid-rs/uuid/commit/6c155b477ac6c7c6397760896987bb347b08709f"><code>6c155b4</code></a>
work around lack of dep:x and x/y feature support in 1.63</li>
<li>Additional commits viewable in <a
href="https://github.com/uuid-rs/uuid/compare/1.12.1...1.13.1">compare
view</a></li>
</ul>
</details>
<br />


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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 7, 2025
1 parent f26397e commit e39775a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ swiftide = { version = "0.18.0", features = [
] }
fastembed = "4.4.0"
swiftide-macros = { version = "0.18.0" }
toml = "0.8.19"
toml = "0.8.20"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
secrecy = { version = "0.10.3", features = ["serde"] }
Expand All @@ -59,7 +59,7 @@ opentelemetry-otlp = { version = "0.27.0", optional = true, features = [
], default-features = false }

tui-markdown = "0.3.1"
uuid = { version = "1.11.0", features = ["v4"] }
uuid = { version = "1.13.1", features = ["v4"] }
derive_builder = "0.20.2"
tui-logger = { features = ["tracing-support"], version = "0.14.1" }
# Only needed for tui-logger filtering
Expand Down

0 comments on commit e39775a

Please sign in to comment.