Move state into proto::streams
This commit is contained in:
@@ -3,7 +3,6 @@ mod framed_read;
|
||||
mod framed_write;
|
||||
mod ping_pong;
|
||||
mod settings;
|
||||
mod state;
|
||||
mod streams;
|
||||
|
||||
pub use self::connection::Connection;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
mod recv;
|
||||
mod send;
|
||||
mod state;
|
||||
mod store;
|
||||
|
||||
use self::recv::Recv;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use {frame, Peer, ConnectionError};
|
||||
use proto::*;
|
||||
use super::{Config, Store};
|
||||
use super::{state, Config, Store};
|
||||
|
||||
use error::Reason::*;
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
use {frame, Peer, ConnectionError};
|
||||
use proto::*;
|
||||
use super::{Config, Store};
|
||||
use super::{state, Config, Store};
|
||||
|
||||
use error::User::*;
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
extern crate slab;
|
||||
|
||||
use proto::*;
|
||||
use super::state;
|
||||
|
||||
use std::collections::{HashMap, hash_map};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user