diff options
author | F_Punk <fabiopungg@gmail.com> | 2021-08-05 19:00:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 19:00:02 +0200 |
commit | 29211a57b49b7c7b80a54ccd35336adff001f6b2 (patch) | |
tree | fbd9f731f01ee5e5f0a72986f2b0c7dcc41e8260 /rust-toolchain.toml | |
parent | eef35f64eb2a01c832355e057ceb8fcb5b1feb28 (diff) | |
download | nrf-softdevice-29211a57b49b7c7b80a54ccd35336adff001f6b2.zip |
update embassy and toolchain (#76)
* update toolchain to nightly-08-03
update embassy
remove removed features
* oops, missed a toolchain file
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r-- | rust-toolchain.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 29db7f1..2db8bbd 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,6 +1,6 @@ # Before upgrading check that everything is available on all tier1 targets here: # https://rust-lang.github.io/rustup-components-history [toolchain] -channel = "nightly-2021-07-13" -components = [ "rust-src", "rustfmt" ] -targets = [ "thumbv7em-none-eabihf" ] +channel = "nightly-2021-08-03" +components = ["rust-src", "rustfmt"] +targets = ["thumbv7em-none-eabihf"] |