Skip to content

Commit 4694e5d

Browse files
authored
Move to use fluvio_ws_stream_wasm (#74)
1 parent 3dbdab9 commit 4694e5d

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

Cargo.lock

+19-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ rustls = { version = "0.19.0", features = ["dangerous_configuration"], optional
7272
[target.'cfg(target_arch = "wasm32")'.dependencies]
7373
fluvio-wasm-timer = "0.2.5"
7474
async-std = { version = "1.6.2", default-features = false, features = ["unstable"], optional = true }
75-
ws_stream_wasm = { git = "https://github.com/infinyon/ws_stream_wasm", branch = "add-clone-to-wsstream-again" }
75+
fluvio_ws_stream_wasm = "0.7.0"
7676

7777
[dev-dependencies]
7878
bytes = "1.0.0"

src/net/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ mod conn {
9797
mod wasm_connector {
9898
use super::*;
9999
use async_trait::async_trait;
100+
use fluvio_ws_stream_wasm::WsMeta;
100101
use std::io::Error as IoError;
101-
use ws_stream_wasm::WsMeta;
102102
#[derive(Clone, Default)]
103103
pub struct DefaultDomainWebsocketConnector {}
104104
impl DefaultDomainWebsocketConnector {

0 commit comments

Comments
 (0)