Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update async-tungstenite #55

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading