Moved irc::proto::colors into irc-proto crate.

This commit is contained in:
Aaron Weiss 2018-05-05 13:47:13 +02:00
parent 3003d9bdcc
commit c97469d630
No known key found for this signature in database
GPG key ID: 047D32DF25DC22EF
2 changed files with 2 additions and 0 deletions

View file

@ -12,6 +12,7 @@ extern crate tokio_io;
pub mod caps; pub mod caps;
pub mod chan; pub mod chan;
pub mod colors;
pub mod command; pub mod command;
pub mod error; pub mod error;
#[cfg(feature = "tokio")] #[cfg(feature = "tokio")]
@ -24,6 +25,7 @@ pub mod response;
pub use self::caps::{Capability, NegotiationVersion}; pub use self::caps::{Capability, NegotiationVersion};
pub use self::chan::ChannelExt; pub use self::chan::ChannelExt;
pub use self::colors::FormattedStringExt;
pub use self::command::{BatchSubCommand, CapSubCommand, Command}; pub use self::command::{BatchSubCommand, CapSubCommand, Command};
#[cfg(feature = "tokio")] #[cfg(feature = "tokio")]
pub use self::irc::IrcCodec; pub use self::irc::IrcCodec;