Switch to string crate (#6)

This commit is contained in:
Carl Lerche
2017-07-26 13:20:26 -07:00
committed by GitHub
parent 0f13836504
commit a203365d79
9 changed files with 75 additions and 119 deletions

View File

@@ -25,6 +25,8 @@ extern crate byteorder;
#[macro_use]
extern crate log;
extern crate string;
pub mod client;
pub mod error;
mod hpack;
@@ -32,8 +34,6 @@ mod proto;
mod frame;
pub mod server;
mod util;
pub use error::{ConnectionError, Reason};
pub use frame::StreamId;
pub use proto::Connection;