Move flate from core to std

This commit is contained in:
Brian Anderson 2013-05-02 19:10:23 -07:00
parent d546493096
commit 7652f3ddb8
5 changed files with 7 additions and 7 deletions

View File

@ -228,7 +228,6 @@ pub mod rand;
pub mod run;
pub mod sys;
pub mod cast;
pub mod flate;
pub mod repr;
pub mod cleanup;
pub mod reflect;

View File

@ -20,7 +20,7 @@ use middle::ty;
use middle;
use util::ppaux::ty_to_str;
use core::flate;
use std::flate;
use core::hash::HashUtil;
use core::hashmap::HashMap;
use std::serialize::Encodable;

View File

@ -22,7 +22,7 @@ use syntax::parse::token::ident_interner;
use syntax::print::pprust;
use syntax::{ast, attr};
use core::flate;
use std::flate;
use core::os::consts::{macos, freebsd, linux, android, win32};
pub enum os {

View File

@ -15,14 +15,14 @@ Simple compression
*/
use libc;
use libc::{c_void, size_t, c_int};
use core::libc::{c_void, size_t, c_int};
use vec;
#[cfg(test)] use rand;
#[cfg(test)] use rand::RngUtil;
#[cfg(test)] use core::rand;
#[cfg(test)] use core::rand::RngUtil;
pub mod rustrt {
use libc::{c_int, c_void, size_t};
use core::libc::{c_int, c_void, size_t};
#[link_name = "rustrt"]
pub extern {

View File

@ -107,6 +107,7 @@ pub mod complex;
pub mod stats;
pub mod semver;
pub mod fileinput;
pub mod flate;
#[cfg(unicode)]
mod unicode;