From e77bed0a23b14496dc90121fc0d83ffbc2a8ff46 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr>
Date: Fri, 23 Oct 2020 16:44:44 +0200
Subject: [PATCH] Loosen the dependency requirement on futures

---
 Cargo.toml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 19ab8ed..7106432 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "iterstream"
-version = "0.1.1"
+version = "0.1.2"
 authors = ["Michaƫl Hauspie <michael.hauspie@univ-lille.fr>"]
 edition = "2018"
 license-file = "LICENSE"
@@ -9,4 +9,4 @@ repository = "https://gitlab.univ-lille.fr/michael.hauspie/iterstream"
 keywords = ["futures", "async", "iterator"]
 description = "Converts Iterator into real asynchronous Stream"
 [dependencies]
-futures = { version = "0.3.6", features = ["thread-pool"]}
+futures = { version = "^0", features = ["thread-pool"]}
-- 
GitLab