Skip to content

Commit

Permalink
init tokio-udt
Browse files Browse the repository at this point in the history
  • Loading branch information
amatissart committed Jun 13, 2022
1 parent dd7e34a commit 3eda17f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ chacha20poly1305 = { version = "0.9.0" }

tokio = { version = "1.12.0", features = [ "macros", "net", "rt-multi-thread", "io-util", "sync", "time" ] }
async-trait = { version = "0.1.51" }
futures = { version = "0.3" }
futures = { version = "0.3" }

tokio-udt = { git = "https://github.com/amatissart/tokio-udt", rev = "99545ed" }
4 changes: 4 additions & 0 deletions src/net/udt/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
use tokio_udt::UdtConnection;
use crate::net::Socket;

impl Socket for UdtConnection {};

0 comments on commit 3eda17f

Please sign in to comment.