Skip to content

Commit

Permalink
chore(deps): update deps to latest version (#100)
Browse files Browse the repository at this point in the history
Fix #98 

Updated all dependencies to latest version:
- `tungstenite` from `0.21` to `0.23`
- `async-tungstenite` from `0.25` to `0.26`
- `graphql_client` from `0.13.0` to `0.14.0`
- `async_executors` from `0.5` to `0.7`
  • Loading branch information
carlocorradini authored Jun 8, 2024
1 parent b30e2b8 commit fa115cd
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 46 deletions.
72 changes: 32 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ serde_json = "1.0"
thiserror = "1.0"

cynic = { version = "3", optional = true }
tungstenite = { version = "0.21", optional = true }
graphql_client = { version = "0.13.0", optional = true }
tungstenite = { version = "0.23", optional = true }
graphql_client = { version = "0.14.0", optional = true }

ws_stream_wasm = { version = "0.7", optional = true }
pin-project-lite = { version = "0.2.7", optional = true }
Expand All @@ -48,7 +48,7 @@ futures-timer = "3.0.3"
assert_matches = "1.5"
async-graphql = "7.0.1"
async-graphql-axum = "7"
async-tungstenite = { version = "0.25", features = ["tokio-runtime"] }
async-tungstenite = { version = "0.26", features = ["tokio-runtime"] }
axum = "0.7"
axum-macros = "0.4"
cynic = { version = "3" }
Expand Down
2 changes: 1 addition & 1 deletion examples-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false

[dependencies]
async-std = { version = "1.9", features = ["attributes"] }
async_executors = { version = "0.5", features = ["async_std"] }
async_executors = { version = "0.7", features = ["async_std"] }
cynic = { version = "3" }
futures = { version = "0.3"}
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ publish = false

[dependencies]
async-std = { version = "1.9", features = ["attributes"] }
async-tungstenite = { version = "0.25", features = ["async-std-runtime", "tokio-runtime"] }
async-tungstenite = { version = "0.26", features = ["async-std-runtime", "tokio-runtime"] }
async_executors = { version = "0.7", features = ["async_std"] }
cynic = { version = "3" }
futures = { version = "0.3"}
graphql_client = { version = "0.13" }
graphql_client = { version = "0.14" }
serde = "1"
tokio = { version = "1.15", features = ["rt-multi-thread", "macros"] }

Expand Down

0 comments on commit fa115cd

Please sign in to comment.