From 36f1b4b5660f4b136b3a766312ae4b017f49014b Mon Sep 17 00:00:00 2001 From: Jacob Rothstein Date: Wed, 26 Aug 2020 19:15:34 -0700 Subject: [PATCH] unstable not needed for async-h1 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f305abd..0765d5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] httparse = "1.3.3" -async-std = { version = "1.6.0", features = ["unstable"] } +async-std = { version = "1.6.0" } http-types = "2.0.0" pin-project-lite = "0.1.1" byte-pool = "0.2.1" @@ -23,6 +23,6 @@ log = "0.4" [dev-dependencies] pretty_assertions = "0.6.1" -async-std = { version = "1.4.0", features = ["unstable", "attributes"] } +async-std = { version = "1.4.0", features = ["attributes"] } tempfile = "3.1.0" async-test = "1.0.0"