Skip to content

Commit

Permalink
Feat/bump embassy deps (#16)
Browse files Browse the repository at this point in the history
* feat: bump embassy deps

* fix: removed nighly features

* fix: removed unused feature

* fix: reexport the whole macro module

* chore: bump toolchain
  • Loading branch information
xgroleau authored Dec 8, 2023
1 parent 3f0f7c0 commit aa15f8e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions ector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ exclude = [".github"]
doctest = false

[dependencies]
embassy-executor = { version = "0.3", default-features = false, features = ["nightly"] }
embassy-sync = { version = "0.4", default-features = false, features = ["nightly"] }
embassy-executor = { version = "0.4", default-features = false }
embassy-sync = { version = "0.5", default-features = false }
atomic-polyfill = "1"

log = { version = "0.4", optional = true }
Expand All @@ -28,8 +28,8 @@ static_cell = "1.0.0"


[dev-dependencies]
embassy-executor = { version = "0.3.0", default-features = false, features = ["integrated-timers", "nightly", "arch-std", "executor-thread"]}
embassy-time = { version = "0.1.0", default-features = false, features = ["std", "nightly"] }
embassy-executor = { version = "0.4.0", default-features = false, features = ["integrated-timers", "arch-std", "executor-thread"]}
embassy-time = { version = "0.2.0", default-features = false, features = ["std"] }
futures = { version = "0.3", default-features = false, features = ["executor"] }
critical-section = { version = "1.1", features = ["std"] }
ector = { path = ".", features = ["std", "log", "time", "test-utils"] }
Expand Down
7 changes: 3 additions & 4 deletions ector/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#![macro_use]
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(dead_code)]
#![feature(type_alias_impl_trait)]
#![feature(async_fn_in_trait)]
#![allow(incomplete_features)]
#![allow(async_fn_in_trait)]
#![doc = include_str!("../README.md")]

pub(crate) mod fmt;

mod actor;
mod drop;
pub use {actor::*, ector_macros::*};
pub use {actor::*, ector_macros};

// Reexport mutex types
pub mod mutex {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 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-11-01"
components = ["clippy"]

0 comments on commit aa15f8e

Please sign in to comment.