chore(deps): Use less specific tokio version in ws example (#312)

* fix(deps): update rust crate tokio to 1.27

* Update Cargo.toml

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
This commit is contained in:
renovate[bot]
2023-04-17 17:10:36 +02:00
committed by GitHub
co-authored by renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Fabian-Lars
parent 64cba15cd9
commit 48bb71eaa3
2 changed files with 54 additions and 31 deletions
@@ -10,7 +10,7 @@ edition = "2021"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri = { version = "1", features = [] }
tokio = { version = "1.11", features = ["net"] }
tokio = { version = "1", features = ["net"] }
futures-util = "0.3"
tauri-plugin-websocket = { path = "../../../" }
tokio-tungstenite = "0.15"