Skip to content

Commit 029ab56

Browse files
committed
use tokio-udt published version
1 parent 6e94684 commit 029ab56

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ tokio = { version = "1.12.0", features = [ "macros", "net", "rt-multi-thread", "
2626
async-trait = { version = "0.1.51" }
2727
futures = { version = "0.3" }
2828

29-
tokio-udt = { git = "https://github.com/amatissart/tokio-udt", rev = "99545ed" }
29+
tokio-udt = "0.1.0-alpha.1"

src/net/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ mod session_connector;
1414
mod session_control;
1515
mod session_listener;
1616
mod socket;
17+
mod udt;
1718
mod unit_receiver;
1819
mod unit_sender;
1920

src/net/udt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
use tokio_udt::UdtConnection;
22
use crate::net::Socket;
33

4-
impl Socket for UdtConnection {};
4+
impl Socket for UdtConnection {}

0 commit comments

Comments
 (0)