rename aquatic to aquatic_udp, same for bench and load test crates

This commit is contained in:
Joakim Frostegård 2020-05-11 16:55:46 +02:00
parent f614bab03d
commit 1b8d74e26d
35 changed files with 53 additions and 53 deletions

View file

@ -14,7 +14,7 @@ name = "aquatic_ws"
path = "src/bin/main.rs"
[dependencies]
aquatic = { path = "../aquatic" }
aquatic_udp = { path = "../aquatic_udp" }
bittorrent_udp = { path = "../bittorrent_udp" }
cli_helpers = { path = "../cli_helpers" }
flume = "0.7"

View file

@ -7,7 +7,7 @@ use indexmap::IndexMap;
use parking_lot::Mutex;
use mio::Token;
pub use aquatic::common::ValidUntil;
pub use aquatic_udp::common::ValidUntil;
use crate::protocol::*;

View file

@ -5,7 +5,7 @@ use hashbrown::HashMap;
use parking_lot::MutexGuard;
use rand::{Rng, SeedableRng, rngs::SmallRng};
use aquatic::handlers::{extract_response_peers};
use aquatic_udp::handlers::extract_response_peers;
use crate::common::*;
use crate::protocol::*;