rename crate "cli_helpers" to "aquatic_cli_helpers"

This commit is contained in:
Joakim Frostegård 2020-05-25 19:27:22 +02:00
parent bc4ada104d
commit 2f13e1e1a8
12 changed files with 25 additions and 25 deletions

View file

@ -10,8 +10,8 @@ name = "aquatic_udp_load_test"
[dependencies]
anyhow = "1"
aquatic_cli_helpers = { path = "../aquatic_cli_helpers" }
aquatic_udp_protocol = { path = "../aquatic_udp_protocol" }
cli_helpers = { path = "../cli_helpers" }
crossbeam-channel = "0.4"
hashbrown = "0.7"
mimalloc = { version = "0.1", default-features = false }

View file

@ -25,7 +25,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
pub fn main(){
cli_helpers::run_app_with_cli_and_config::<Config>(
aquatic_cli_helpers::run_app_with_cli_and_config::<Config>(
"aquatic: udp bittorrent tracker: load tester",
run,
)