Skip to content

Commit dcbdb52

Browse files
Bump oneshot from 0.1.8 to 0.1.9 (#222)
Bumps [oneshot](https://github.com/faern/oneshot) from 0.1.8 to 0.1.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/faern/oneshot/blob/main/CHANGELOG.md">oneshot's changelog</a>.</em></p> <blockquote> <h2>[0.1.9] - 2025-02-02</h2> <h3>Added</h3> <ul> <li>Implement <code>Sync</code> for <code>Sender</code>. There is not a whole lot someone can do with a <code>&amp;Sender</code>, but this allows storing the sender in places that are overly conservative and require a <code>Sync</code> bound on the content.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/faern/oneshot/commit/ad5d1e0de5ad482cf930b411d54bd23f31419218"><code>ad5d1e0</code></a> Bump version to 0.1.9</li> <li><a href="https://github.com/faern/oneshot/commit/1b5b0ac4d8e5909d79856e82b85b45af7bd4e5ec"><code>1b5b0ac</code></a> Implement Sync for Sender</li> <li><a href="https://github.com/faern/oneshot/commit/e301dbe46a3e475197125afe06bad5776a1e71bc"><code>e301dbe</code></a> docs(lib.rs): fix typo</li> <li><a href="https://github.com/faern/oneshot/commit/2ccf485bc10e6db647560188b0ab6d92dc7f7cbb"><code>2ccf485</code></a> Ignore receiver_waker_size test since it's unstable</li> <li><a href="https://github.com/faern/oneshot/commit/c0b19d9671c28b596b91289d33221e2f63ee40a8"><code>c0b19d9</code></a> Make criterion a benchmarking only dependency</li> <li><a href="https://github.com/faern/oneshot/commit/2d12377ff67b6721ad62eb57ff564ce09d661cf9"><code>2d12377</code></a> Add license files to repository</li> <li><a href="https://github.com/faern/oneshot/commit/85fd895d4571abe6b2e068889d6386b7d6d7329d"><code>85fd895</code></a> Upgrade criterion to 0.5.1</li> <li><a href="https://github.com/faern/oneshot/commit/67c0192c47a8596ef0add332f440dcfad0a15fb0"><code>67c0192</code></a> Remove one of the test messages in benchmarks</li> <li><a href="https://github.com/faern/oneshot/commit/a9156a45b8bba534eb1859b8eab4c7f4b5508bd2"><code>a9156a4</code></a> Remove cargo audit CI</li> <li>See full diff in <a href="https://github.com/faern/oneshot/compare/v0.1.8...v0.1.9">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=oneshot&package-manager=cargo&previous-version=0.1.8&new-version=0.1.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot 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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b415e46 commit dcbdb52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

transport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ eyre.workspace = true
1010
crossbeam-channel.workspace = true
1111
tracing.workspace = true
1212
bytes = "1.10.0"
13-
oneshot = { version = "0.1.8", default-features = false, features = ["std"] }
13+
oneshot = { version = "0.1.9", default-features = false, features = ["std"] }
1414
serde_json.workspace = true
1515
serde.workspace = true
1616

0 commit comments

Comments
 (0)