Skip to content

Commit

Permalink
update toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulf Lilleengen authored and lulf committed Oct 4, 2023
1 parent 569616c commit 78bc369
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion examples/embassy/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![allow(incomplete_features)]
#![feature(type_alias_impl_trait)]
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]

use clap::Parser;
use embassy_executor::{Executor, Spawner};
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -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-2023-08-19"
channel = "nightly-2023-10-02"
components = [ "rustfmt" ]
targets = [ "thumbv7em-none-eabi" ]
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
#![allow(dead_code)]
#![cfg_attr(feature = "async", allow(incomplete_features))]
#![cfg_attr(feature = "async", feature(async_fn_in_trait))]
#![cfg_attr(feature = "async", feature(impl_trait_projections))]

//! Embedded-TLS is a Rust-native TLS 1.3 implementation that works in a no-std environment. The
//! implementation is work in progress, but the [example clients](https://github.com/drogue-iot/embedded-tls/tree/main/examples) should work against the [rustls](https://github.com/ctz/rustls) echo server.
Expand Down
1 change: 0 additions & 1 deletion tests/client_test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![macro_use]
#![allow(incomplete_features)]
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]
use embedded_io::BufRead as _;
use embedded_io_adapters::{std::FromStd, tokio_1::FromTokio};
use embedded_io_async::BufRead as _;
Expand Down
1 change: 0 additions & 1 deletion tests/early_data_test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![macro_use]
#![allow(incomplete_features)]
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]
use embedded_io::{Read, Write};
use embedded_io_adapters::std::FromStd;
use rand_core::OsRng;
Expand Down
1 change: 0 additions & 1 deletion tests/psk_test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![macro_use]
#![allow(incomplete_features)]
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]
use embedded_io_adapters::tokio_1::FromTokio;
use embedded_tls::*;
use openssl::ssl;
Expand Down
1 change: 0 additions & 1 deletion tests/split_test.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![macro_use]
#![allow(incomplete_features)]
#![feature(async_fn_in_trait)]
#![feature(impl_trait_projections)]
use embedded_io::{Read, Write};
use embedded_io_adapters::std::FromStd;
use rand_core::OsRng;
Expand Down

0 comments on commit 78bc369

Please sign in to comment.