cli_helpers: use anyhow in app fn; aquatic_ws: reorganize error handling

This commit is contained in:
Joakim Frostegård 2020-05-23 14:05:50 +02:00
parent 1efe6f96c5
commit 526faa9aab
13 changed files with 134 additions and 93 deletions

4
Cargo.lock generated
View file

@ -33,6 +33,7 @@ dependencies = [
name = "aquatic_udp"
version = "0.1.0"
dependencies = [
"anyhow",
"aquatic_common",
"bittorrent_udp",
"cli_helpers",
@ -55,6 +56,7 @@ dependencies = [
name = "aquatic_udp_bench"
version = "0.1.0"
dependencies = [
"anyhow",
"aquatic_udp",
"bittorrent_udp",
"cli_helpers",
@ -72,6 +74,7 @@ dependencies = [
name = "aquatic_udp_load_test"
version = "0.1.0"
dependencies = [
"anyhow",
"bittorrent_udp",
"cli_helpers",
"crossbeam-channel",
@ -91,6 +94,7 @@ dependencies = [
name = "aquatic_ws"
version = "0.1.0"
dependencies = [
"anyhow",
"aquatic_common",
"cli_helpers",
"either",