Skip to content

Commit

Permalink
chore: update deps (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeffcaii committed Jan 14, 2021
1 parent 6a101e2 commit 3c555e7
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion rsocket-messaging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions rsocket-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions rsocket-transport-tcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"]

Expand Down
4 changes: 2 additions & 2 deletions rsocket-transport-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rsocket-transport-websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions rsocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 = []
Expand Down

0 comments on commit 3c555e7

Please sign in to comment.