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

@ -15,8 +15,8 @@ path = "src/bin/main.rs"
[dependencies]
anyhow = "1"
aquatic_cli_helpers = { path = "../aquatic_cli_helpers" }
aquatic_common = { path = "../aquatic_common" }
cli_helpers = { path = "../cli_helpers" }
either = "1"
flume = "0.7"
hashbrown = { version = "0.7", features = ["serde"] }

View file

@ -1,5 +1,5 @@
use anyhow::Context;
use cli_helpers::run_app_with_cli_and_config;
use aquatic_cli_helpers::run_app_with_cli_and_config;
use simplelog::{ConfigBuilder, LevelFilter, TermLogger, TerminalMode};
use aquatic_ws::config::{Config, LogLevel};