Skip to content

Commit

Permalink
use tokio-udt published version
Browse files Browse the repository at this point in the history
  • Loading branch information
amatissart committed Jul 1, 2022
1 parent 6e94684 commit 029ab56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ tokio = { version = "1.12.0", features = [ "macros", "net", "rt-multi-thread", "
async-trait = { version = "0.1.51" }
futures = { version = "0.3" }

tokio-udt = { git = "https://github.com/amatissart/tokio-udt", rev = "99545ed" }
tokio-udt = "0.1.0-alpha.1"
1 change: 1 addition & 0 deletions src/net/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ mod session_connector;
mod session_control;
mod session_listener;
mod socket;
mod udt;
mod unit_receiver;
mod unit_sender;

Expand Down
2 changes: 1 addition & 1 deletion src/net/udt/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use tokio_udt::UdtConnection;
use crate::net::Socket;

impl Socket for UdtConnection {};
impl Socket for UdtConnection {}

0 comments on commit 029ab56

Please sign in to comment.