From 3c555e727db8bb08077886b8bb84d34639698115 Mon Sep 17 00:00:00 2001 From: Jeffsky Date: Thu, 14 Jan 2021 23:03:49 +0800 Subject: [PATCH] chore: update deps (#42) --- examples/Cargo.toml | 2 +- rsocket-messaging/Cargo.toml | 2 +- rsocket-test/Cargo.toml | 4 ++-- rsocket-transport-tcp/Cargo.toml | 4 ++-- rsocket-transport-wasm/Cargo.toml | 4 ++-- rsocket-transport-websocket/Cargo.toml | 2 +- rsocket/Cargo.toml | 6 +++--- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index ca4377e..f564ddd 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dev-dependencies] log = "0.4.13" env_logger = "0.8.2" -futures = "0.3.9" +futures = "0.3.10" clap = "2.33.3" [dev-dependencies.rsocket_rust] diff --git a/rsocket-messaging/Cargo.toml b/rsocket-messaging/Cargo.toml index ed6cabd..e8f25d7 100644 --- a/rsocket-messaging/Cargo.toml +++ b/rsocket-messaging/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/rsocket/rsocket-rust" description = "Communicate with Spring RSocket Messaging." [dependencies] -futures = "0.3.9" +futures = "0.3.10" bytes = "1.0.1" serde = "1.0.119" serde_json = "1.0.61" diff --git a/rsocket-test/Cargo.toml b/rsocket-test/Cargo.toml index 0da251b..3474fb4 100644 --- a/rsocket-test/Cargo.toml +++ b/rsocket-test/Cargo.toml @@ -7,11 +7,11 @@ publish = false [dev-dependencies] log = "0.4" -futures = "0.3.9" +futures = "0.3.10" env_logger = "0.8.2" bytes = "1.0.1" hex = "0.4.2" -rand = "0.8.1" +rand = "0.8.2" serde = "1.0.119" serde_derive = "1.0.119" diff --git a/rsocket-transport-tcp/Cargo.toml b/rsocket-transport-tcp/Cargo.toml index d85b109..c6dccb1 100644 --- a/rsocket-transport-tcp/Cargo.toml +++ b/rsocket-transport-tcp/Cargo.toml @@ -15,7 +15,7 @@ tls = ["tokio-native-tls"] [dependencies] log = "0.4.13" -futures = "0.3.9" +futures = "0.3.10" bytes = "1.0.1" [dependencies.rsocket_rust] @@ -28,7 +28,7 @@ default-features = false features = [ "rt", "rt-multi-thread", "net", "sync", "io-util", "macros" ] [dependencies.tokio-util] -version = "0.6.0" +version = "0.6.1" default-features = false features = ["codec"] diff --git a/rsocket-transport-wasm/Cargo.toml b/rsocket-transport-wasm/Cargo.toml index 59d6f3b..67087bc 100644 --- a/rsocket-transport-wasm/Cargo.toml +++ b/rsocket-transport-wasm/Cargo.toml @@ -12,8 +12,8 @@ description = "WASM Websocket RSocket transport implementation." [dependencies] bytes = "1.0.1" wasm-bindgen-futures = "0.4.19" -futures-channel = "0.3.9" -futures-util = "0.3.9" +futures-channel = "0.3.10" +futures-util = "0.3.10" js-sys = "0.3.46" serde = "1.0.119" serde_derive = "1.0.119" diff --git a/rsocket-transport-websocket/Cargo.toml b/rsocket-transport-websocket/Cargo.toml index 2df740d..06affa0 100644 --- a/rsocket-transport-websocket/Cargo.toml +++ b/rsocket-transport-websocket/Cargo.toml @@ -11,7 +11,7 @@ description = "Websocket RSocket transport implementation." [dependencies] log = "0.4.13" -futures = "0.3.9" +futures = "0.3.10" bytes = "1.0.1" url = "2.2.0" tokio-tungstenite = "0.13.0" diff --git a/rsocket/Cargo.toml b/rsocket/Cargo.toml index 775f7d1..bfc126a 100644 --- a/rsocket/Cargo.toml +++ b/rsocket/Cargo.toml @@ -12,10 +12,10 @@ description = "rsocket-rust is an implementation of the RSocket protocol in Rust [dependencies] log = "0.4.13" bytes = "1.0.1" -futures = "0.3.9" +futures = "0.3.10" lazy_static = "1.4.0" async-trait = "0.1.42" -dashmap = "4.0.1" +dashmap = "4.0.2" thiserror = "1.0.23" anyhow = "1.0.38" async-stream = "0.3.0" @@ -26,7 +26,7 @@ wasm-bindgen-futures = "0.4.19" [dependencies.tokio] version = "1.0.1" default-features = false -features = [ "rt", "rt-multi-thread", "sync", "time" ] +features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] [features] default = []