diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-02-19 19:18:33 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-02-24 00:15:17 -0800 |
| commit | 8761f79485f11ef03eb6cb569ccb9f4c73e68f11 (patch) | |
| tree | 411eefd07ab744efb0d4934e12900a40912b44d6 /src/libuuid/lib.rs | |
| parent | b78b749810f4ed53e8287adfb284f9f32f16b73c (diff) | |
Remove deriving(ToStr)
This has been superseded by deriving(Show). cc #9806
Diffstat (limited to 'src/libuuid/lib.rs')
| -rw-r--r-- | src/libuuid/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs index 7a078e4b571..7a3ed09a492 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -65,14 +65,14 @@ extern crate test; extern crate serialize; use std::cast::{transmute,transmute_copy}; -use std::cast::{transmute,transmute_copy}; use std::char::Char; -use std::cmp::Eq; -use std::cmp::Eq; use std::fmt; use std::hash::{Hash, sip}; use std::num::FromStrRadix; use std::rand::Rng; +use std::rand; +use std::str; +use std::vec; use serialize::{Encoder, Encodable, Decoder, Decodable}; |
