Merge #125
125: build(deps): bump nb from 0.1.2 to 1.0.0 r=jordens a=dependabot[bot] Bumps [nb](https://github.com/rust-embedded/nb) from 0.1.2 to 1.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-embedded/nb/blob/master/CHANGELOG.md">nb's changelog</a>.</em></p> <blockquote> <h2>[v1.0.0] - 2020-07-07</h2> <h3>Changed</h3> <ul> <li>[breaking-change] The <code>unstable</code> feature and its code has been removed. This includes the macros <code>try_nb!</code> and <code>await!</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="075ecd33c5
"><code>075ecd3</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-embedded/nb/issues/33">#33</a></li> <li><a href="56f6faa35d
"><code>56f6faa</code></a> Prepare 1.0.0 release</li> <li><a href="b9b7beda09
"><code>b9b7bed</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-embedded/nb/issues/35">#35</a></li> <li><a href="c5e7bcd1d8
"><code>c5e7bcd</code></a> Add rust-embedded/hal to CODEOWNERS</li> <li><a href="8b497f03f2
"><code>8b497f0</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-embedded/nb/issues/30">#30</a></li> <li><a href="4c2288b7a3
"><code>4c2288b</code></a> Avoid using unwrap in examples</li> <li><a href="54c8d81b79
"><code>54c8d81</code></a> Document current MSRV</li> <li><a href="0d8d9364ac
"><code>0d8d936</code></a> Merge <a href="https://github-redirect.dependabot.com/rust-embedded/nb/issues/32">#32</a></li> <li><a href="4cb937c693
"><code>4cb937c</code></a> Update changelog</li> <li><a href="f26820d2f0
"><code>f26820d</code></a> Merge release 0.1.2 commit</li> <li>Additional commits viewable in <a href="https://github.com/rust-embedded/nb/compare/v0.1.2...v1.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nb&package-manager=cargo&previous-version=0.1.2&new-version=1.0.0)](https://help.github.com/articles/configuring-automated-security-fixes) 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
commit
40b57704b1
|
@ -177,7 +177,7 @@ version = "0.2.3"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ee4908a155094da7723c2d60d617b820061e3b4efcc3d9e293d206a5a76c170b"
|
checksum = "ee4908a155094da7723c2d60d617b820061e3b4efcc3d9e293d206a5a76c170b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nb",
|
"nb 0.1.2",
|
||||||
"void",
|
"void",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -279,6 +279,12 @@ version = "0.1.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b1411551beb3c11dedfb0a90a0fa256b47d28b9ec2cdff34c25a2fa59e45dbdc"
|
checksum = "b1411551beb3c11dedfb0a90a0fa256b47d28b9ec2cdff34c25a2fa59e45dbdc"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nb"
|
||||||
|
version = "1.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "546c37ac5d9e56f55e73b677106873d9d9f5190605e41a856503623648488cae"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "panic-halt"
|
name = "panic-halt"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
@ -442,7 +448,7 @@ dependencies = [
|
||||||
"heapless",
|
"heapless",
|
||||||
"log",
|
"log",
|
||||||
"mcp23017",
|
"mcp23017",
|
||||||
"nb",
|
"nb 1.0.0",
|
||||||
"panic-halt",
|
"panic-halt",
|
||||||
"panic-semihosting",
|
"panic-semihosting",
|
||||||
"serde",
|
"serde",
|
||||||
|
@ -491,7 +497,7 @@ dependencies = [
|
||||||
"cortex-m",
|
"cortex-m",
|
||||||
"cortex-m-rt",
|
"cortex-m-rt",
|
||||||
"embedded-hal",
|
"embedded-hal",
|
||||||
"nb",
|
"nb 0.1.2",
|
||||||
"paste",
|
"paste",
|
||||||
"stm32h7",
|
"stm32h7",
|
||||||
"void",
|
"void",
|
||||||
|
@ -508,7 +514,7 @@ dependencies = [
|
||||||
"cortex-m",
|
"cortex-m",
|
||||||
"cortex-m-rt",
|
"cortex-m-rt",
|
||||||
"embedded-hal",
|
"embedded-hal",
|
||||||
"nb",
|
"nb 0.1.2",
|
||||||
"paste",
|
"paste",
|
||||||
"stm32h7",
|
"stm32h7",
|
||||||
"void",
|
"void",
|
||||||
|
|
|
@ -37,7 +37,7 @@ heapless = { version = "0.5", features = ["serde"] }
|
||||||
serde-json-core = "0.1"
|
serde-json-core = "0.1"
|
||||||
cortex-m-rtic = "0.5.3"
|
cortex-m-rtic = "0.5.3"
|
||||||
embedded-hal = "0.2.3"
|
embedded-hal = "0.2.3"
|
||||||
nb = "0.1.2"
|
nb = "1.0.0"
|
||||||
asm-delay = "0.7.2"
|
asm-delay = "0.7.2"
|
||||||
enum-iterator = "0.6.0"
|
enum-iterator = "0.6.0"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue