Moved irc::proto::colors into irc-proto crate.
This commit is contained in:
parent
3003d9bdcc
commit
c97469d630
2 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue