diff --git a/.cargo/config.toml b/.cargo/config.toml index 70558211..77788410 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,3 @@ [alias] lint = "hack --clean-per-run clippy --workspace --tests --examples" +chk = "hack check --workspace --tests --examples" diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index f2e98425..e9213eff 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -19,12 +19,11 @@ path = "src/lib.rs" actix-rt = { version = "2.0.0", default-features = false } actix-service = "2.0.0-beta.5" -futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } -futures-sink = { version = "0.3.7", default-features = false } local-waker = "0.1" log = "0.4" pin-project-lite = "0.2.0" [dev-dependencies] actix-rt = "2.0.0" +futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } futures-util = { version = "0.3.7", default-features = false }