Skip to content

Commit 7610074

Browse files
committed
Grab RingBuf from std
1 parent bd9b77a commit 7610074

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
#![feature(macro_rules, struct_variant, phase, unsafe_destructor, slicing_syntax, default_type_params, if_let)]
5555
#![warn(missing_docs)]
5656

57-
extern crate collections;
5857
extern crate openssl;
5958
extern crate serialize;
6059
extern crate time;
@@ -64,13 +63,12 @@ extern crate phf_mac;
6463
#[phase(plugin, link)]
6564
extern crate log;
6665

67-
use collections::RingBuf;
6866
use url::Url;
6967
use openssl::crypto::hash::{MD5, Hasher};
7068
use openssl::ssl::SslContext;
7169
use serialize::hex::ToHex;
7270
use std::cell::{Cell, RefCell};
73-
use std::collections::HashMap;
71+
use std::collections::{RingBuf, HashMap};
7472
use std::io::{BufferedStream, IoResult, MemWriter};
7573
use std::io::net::ip::Port;
7674
use std::mem;

0 commit comments

Comments
 (0)