Skip to content

Commit

Permalink
Update async-tungstenite (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg authored Jan 3, 2024
1 parent 31a1647 commit 7e128f3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ all APIs might be changed.

## Unreleased - xxxx-xx-xx

### Breaking Changes

- `async_tungstenite` dependency has been updated to 0.24

## v0.6.0 - 2023-10-01

### Breaking Changes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ thiserror = "1.0"
uuid = { version = "1.0", features = ["v4"] }

cynic = { version = "3", optional = true }
async-tungstenite = { version = "0.23", optional = true }
async-tungstenite = { version = "0.24", optional = true }
graphql_client = { version = "0.13.0", optional = true }

ws_stream_wasm = { version = "0.7", optional = true }
Expand All @@ -44,7 +44,7 @@ pharos = { version = "0.5.2", optional = true }
assert_matches = "1.5"
async-graphql = "5.0.10"
async-graphql-axum = "5"
async-tungstenite = { version = "0.23", features = ["tokio-runtime"] }
async-tungstenite = { version = "0.24", features = ["tokio-runtime"] }
axum = "0.6"
cynic = { version = "3" }
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async_executors = { version = "0.7", features = ["async_std"] }
cynic = { version = "3" }
futures = { version = "0.3"}

async-tungstenite = { version = "0.23", features = ["async-std-runtime", "tokio-runtime"] }
async-tungstenite = { version = "0.24", features = ["async-std-runtime", "tokio-runtime"] }
tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] }

[dependencies.graphql-ws-client]
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ pub use wasm::*;

#[cfg(feature = "async-tungstenite")]
mod native;
#[cfg(feature = "async-tungstenite")]
pub use native::*;

pub use client::{AsyncWebsocketClient, AsyncWebsocketClientBuilder, Error, SubscriptionStream};

Expand Down

0 comments on commit 7e128f3

Please sign in to comment.