Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions awkernel_async_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ log = "0.4"
array-macro = "2.1"

[dependencies.futures]
version = "0.3"
git = "https://github.com/ytakano/futures-rs.git"
# version = "0.3"
default-features = false
features = ["alloc", "async-await", "cfg-target-has-atomic"]
features = ["alloc", "async-await"]

[dependencies.awkernel_lib]
path = "../awkernel_lib"
Expand Down
2 changes: 1 addition & 1 deletion awkernel_async_lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use core::time::Duration;
use futures::{channel::oneshot, Future};
use join_handle::JoinHandle;

pub use futures::select_biased;
pub use futures::{select, select_biased};

pub use awkernel_lib::{
cpu::cpu_id,
Expand Down
Loading