This commit is contained in:
2017-12-13 00:02:24 -05:00
parent 448f7cc69f
commit 104f94a707
18 changed files with 840 additions and 976 deletions

View File

@@ -1,10 +1,21 @@
extern crate byteorder;
extern crate hyper;
extern crate libc;
#[macro_use]
extern crate failure;
extern crate rand;
extern crate reqwest;
extern crate serde;
extern crate serde_bencode;
extern crate serde_bytes;
#[macro_use]
extern crate serde_derive;
extern crate sha1;
extern crate url;
pub mod bencode;
#[macro_use]
mod macros;
pub mod bitfield;
pub mod error;
pub mod metainfo;
pub mod net;
// pub mod net;
pub mod torrent;
pub mod tracker;