Skip to content

Commit 3c555e7

Browse files
authored
chore: update deps (#42)
1 parent 6a101e2 commit 3c555e7

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ publish = false
88
[dev-dependencies]
99
log = "0.4.13"
1010
env_logger = "0.8.2"
11-
futures = "0.3.9"
11+
futures = "0.3.10"
1212
clap = "2.33.3"
1313

1414
[dev-dependencies.rsocket_rust]

rsocket-messaging/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://github.com/rsocket/rsocket-rust"
1010
description = "Communicate with Spring RSocket Messaging."
1111

1212
[dependencies]
13-
futures = "0.3.9"
13+
futures = "0.3.10"
1414
bytes = "1.0.1"
1515
serde = "1.0.119"
1616
serde_json = "1.0.61"

rsocket-test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ publish = false
77

88
[dev-dependencies]
99
log = "0.4"
10-
futures = "0.3.9"
10+
futures = "0.3.10"
1111
env_logger = "0.8.2"
1212
bytes = "1.0.1"
1313
hex = "0.4.2"
14-
rand = "0.8.1"
14+
rand = "0.8.2"
1515
serde = "1.0.119"
1616
serde_derive = "1.0.119"
1717

rsocket-transport-tcp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tls = ["tokio-native-tls"]
1515

1616
[dependencies]
1717
log = "0.4.13"
18-
futures = "0.3.9"
18+
futures = "0.3.10"
1919
bytes = "1.0.1"
2020

2121
[dependencies.rsocket_rust]
@@ -28,7 +28,7 @@ default-features = false
2828
features = [ "rt", "rt-multi-thread", "net", "sync", "io-util", "macros" ]
2929

3030
[dependencies.tokio-util]
31-
version = "0.6.0"
31+
version = "0.6.1"
3232
default-features = false
3333
features = ["codec"]
3434

rsocket-transport-wasm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ description = "WASM Websocket RSocket transport implementation."
1212
[dependencies]
1313
bytes = "1.0.1"
1414
wasm-bindgen-futures = "0.4.19"
15-
futures-channel = "0.3.9"
16-
futures-util = "0.3.9"
15+
futures-channel = "0.3.10"
16+
futures-util = "0.3.10"
1717
js-sys = "0.3.46"
1818
serde = "1.0.119"
1919
serde_derive = "1.0.119"

rsocket-transport-websocket/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Websocket RSocket transport implementation."
1111

1212
[dependencies]
1313
log = "0.4.13"
14-
futures = "0.3.9"
14+
futures = "0.3.10"
1515
bytes = "1.0.1"
1616
url = "2.2.0"
1717
tokio-tungstenite = "0.13.0"

rsocket/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ description = "rsocket-rust is an implementation of the RSocket protocol in Rust
1212
[dependencies]
1313
log = "0.4.13"
1414
bytes = "1.0.1"
15-
futures = "0.3.9"
15+
futures = "0.3.10"
1616
lazy_static = "1.4.0"
1717
async-trait = "0.1.42"
18-
dashmap = "4.0.1"
18+
dashmap = "4.0.2"
1919
thiserror = "1.0.23"
2020
anyhow = "1.0.38"
2121
async-stream = "0.3.0"
@@ -26,7 +26,7 @@ wasm-bindgen-futures = "0.4.19"
2626
[dependencies.tokio]
2727
version = "1.0.1"
2828
default-features = false
29-
features = [ "rt", "rt-multi-thread", "sync", "time" ]
29+
features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ]
3030

3131
[features]
3232
default = []

0 commit comments

Comments
 (0)