From 12003c880ca7f8fec8ca320470a220fc447e7118 Mon Sep 17 00:00:00 2001 From: Eunchong Yu Date: Sun, 19 Aug 2018 08:50:38 +0900 Subject: [PATCH] Remove deprecated AsciiExt --- src/client/mod.rs | 2 -- src/proto/command.rs | 1 - 2 files changed, 3 deletions(-) diff --git a/src/client/mod.rs b/src/client/mod.rs index 0a05f56..258c94b 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -45,8 +45,6 @@ //! # } //! ``` -#[cfg(feature = "ctcp")] -use std::ascii::AsciiExt; use std::collections::HashMap; use std::path::Path; use std::sync::{Arc, Mutex, RwLock}; diff --git a/src/proto/command.rs b/src/proto/command.rs index 022e886..10af3ea 100644 --- a/src/proto/command.rs +++ b/src/proto/command.rs @@ -1,5 +1,4 @@ //! Enumeration of all available client commands. -use std::ascii::AsciiExt; use std::str::FromStr; use error::MessageParseError;