Fixed the code that shouldn't have worked without AsciiExt.

This commit is contained in:
Aaron Weiss 2018-01-28 01:59:47 +01:00
parent 7a1d1d2af6
commit d6786936fa
No known key found for this signature in database
GPG key ID: 047D32DF25DC22EF
2 changed files with 3 additions and 0 deletions

View file

@ -45,6 +45,8 @@
//! }).unwrap();
//! # }
//! ```
#[cfg(feature = "ctcp")]
use std::ascii::AsciiExt;
use std::collections::HashMap;
use std::path::Path;
use std::sync::{Arc, Mutex, RwLock};

View file

@ -1,4 +1,5 @@
//! Enumeration of all available client commands.
use std::ascii::AsciiExt;
use std::str::FromStr;
use error::MessageParseError;