aquatic_ws: replace flume with crossbeam-channel

This improved performance in aquatic_http
This commit is contained in:
Joakim Frostegård 2020-07-31 01:47:45 +02:00
parent 0d8b6f6cc4
commit d5de57b45f
5 changed files with 14 additions and 114 deletions

View file

@ -1,7 +1,7 @@
use std::net::SocketAddr;
use std::sync::Arc;
use flume::{Sender, Receiver};
use crossbeam_channel::{Sender, Receiver};
use hashbrown::HashMap;
use indexmap::IndexMap;
use log::error;