Skip to content

Commit

Permalink
chore(wasm-ext): Replace parity-send-wrapper with send-wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
oblique committed Jun 1, 2023
1 parent 224bede commit e2e6816
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions transports/wasm-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ categories = ["network-programming", "asynchronous"]
futures = "0.3.28"
js-sys = "0.3.63"
libp2p-core = { workspace = true }
parity-send-wrapper = "0.1.0"
send_wrapper = "0.6.0"
wasm-bindgen = "0.2.86"
wasm-bindgen-futures = "0.4.36"

[features]
websocket = []

# Passing arguments to the docsrs builder in order to properly document cfg's.
# Passing arguments to the docsrs builder in order to properly document cfg's.
# More information: https://docs.rs/about/builds#cross-compiling
[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion transports/wasm-ext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ use libp2p_core::{
transport::{ListenerId, TransportError, TransportEvent},
Multiaddr, Transport,
};
use parity_send_wrapper::SendWrapper;
use send_wrapper::SendWrapper;
use std::{collections::VecDeque, error, fmt, io, mem, pin::Pin, task::Context, task::Poll};
use wasm_bindgen::{prelude::*, JsCast};
use wasm_bindgen_futures::JsFuture;
Expand Down

0 comments on commit e2e6816

Please sign in to comment.