Initial commit: aquatic, udp bittorrent tracker

This commit is contained in:
Joakim Frostegård 2020-04-04 22:08:32 +02:00
commit ace2e1a296
18 changed files with 1386 additions and 0 deletions

23
aquatic/Cargo.toml Normal file
View file

@ -0,0 +1,23 @@
[package]
name = "aquatic"
version = "0.1.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
edition = "2018"
[[bin]]
name = "aquatic"
path = "src/main.rs"
[dependencies]
bittorrent_udp = { path = "../bittorrent_udp" }
dashmap = "3"
indexmap = "1"
net2 = "0.2"
[dependencies.rand]
version = "0.7"
features = ["small_rng"]
[dependencies.mio]
version = "0.7"
features = ["udp", "os-poll", "os-util"]