From 812a76d588bf2230b7b47fb95b46ee4addb02257 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 5 Feb 2020 20:28:42 -0800 Subject: [PATCH] Update more futures-preview to futures (#1346) --- Cargo.lock | 6 +++--- crates/nu_plugin_fetch/Cargo.toml | 4 ++-- crates/nu_plugin_match/Cargo.toml | 2 +- crates/nu_plugin_post/Cargo.toml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9174baba4..a2fb6fb8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2435,7 +2435,7 @@ dependencies = [ name = "nu_plugin_fetch" version = "0.9.0" dependencies = [ - "futures-preview", + "futures 0.3.3", "nu-build", "nu-errors", "nu-plugin", @@ -2462,7 +2462,7 @@ dependencies = [ name = "nu_plugin_match" version = "0.9.0" dependencies = [ - "futures-preview", + "futures 0.3.3", "nu-build", "nu-errors", "nu-plugin", @@ -2476,7 +2476,7 @@ name = "nu_plugin_post" version = "0.9.0" dependencies = [ "base64 0.11.0", - "futures-preview", + "futures 0.3.3", "nu-build", "nu-errors", "nu-plugin", diff --git a/crates/nu_plugin_fetch/Cargo.toml b/crates/nu_plugin_fetch/Cargo.toml index 5c956acc5..f5161ec86 100644 --- a/crates/nu_plugin_fetch/Cargo.toml +++ b/crates/nu_plugin_fetch/Cargo.toml @@ -11,9 +11,9 @@ nu-plugin = { path = "../nu-plugin", version = "0.9.0" } nu-protocol = { path = "../nu-protocol", version = "0.9.0" } nu-source = { path = "../nu-source", version = "0.9.0" } nu-errors = { path = "../nu-errors", version = "0.9.0" } -futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] } +futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" -url = "2.1.0" +url = "2.1.1" [build-dependencies] nu-build = { version = "0.9.0", path = "../nu-build" } diff --git a/crates/nu_plugin_match/Cargo.toml b/crates/nu_plugin_match/Cargo.toml index fbdc7918a..7a4f18735 100644 --- a/crates/nu_plugin_match/Cargo.toml +++ b/crates/nu_plugin_match/Cargo.toml @@ -11,7 +11,7 @@ nu-plugin = { path = "../nu-plugin", version = "0.9.0" } nu-protocol = { path = "../nu-protocol", version = "0.9.0" } nu-source = { path = "../nu-source", version = "0.9.0" } nu-errors = { path = "../nu-errors", version = "0.9.0" } -futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] } +futures = { version = "0.3", features = ["compat", "io-compat"] } regex = "1" [build-dependencies] diff --git a/crates/nu_plugin_post/Cargo.toml b/crates/nu_plugin_post/Cargo.toml index b05486911..0fe501d4a 100644 --- a/crates/nu_plugin_post/Cargo.toml +++ b/crates/nu_plugin_post/Cargo.toml @@ -11,12 +11,12 @@ nu-plugin = { path = "../nu-plugin", version = "0.9.0" } nu-protocol = { path = "../nu-protocol", version = "0.9.0" } nu-source = { path = "../nu-source", version = "0.9.0" } nu-errors = { path = "../nu-errors", version = "0.9.0" } -futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] } +futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" -url = "2.1.0" -serde_json = "1.0.44" +url = "2.1.1" +serde_json = "1.0.46" base64 = "0.11" -num-traits = "0.2.10" +num-traits = "0.2.11" [build-dependencies] nu-build = { version = "0.9.0", path = "../nu-build" }