mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-04-24 22:57:12 -04:00
fix: add futures-core crate features
This commit is contained in:
parent
79d30eb84d
commit
561aa348e9
2 changed files with 3 additions and 2 deletions
|
@ -11,7 +11,7 @@ log = "0.4.14"
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
bytes = { version = "1.0" }
|
bytes = { version = "1.0" }
|
||||||
pin-project = "1.0"
|
pin-project = "1.0"
|
||||||
futures-core = { version = "0.3", default-features = false }
|
futures-core = { version = "0.3" }
|
||||||
tokio = { version = "1.0", features = ["time", "rt"] }
|
tokio = { version = "1.0", features = ["time", "rt"] }
|
||||||
rand = "0.8.3"
|
rand = "0.8.3"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
use futures_core::{future::BoxFuture, ready};
|
use futures_core::future::BoxFuture;
|
||||||
|
use futures_core::ready;
|
||||||
use pin_project::pin_project;
|
use pin_project::pin_project;
|
||||||
use std::{
|
use std::{
|
||||||
fmt::Debug,
|
fmt::Debug,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue