2011-12-05 18:46:37 -06:00
|
|
|
#[link(name = "core",
|
|
|
|
vers = "0.1",
|
|
|
|
uuid = "c70c24a7-5551-4f73-8e37-380b11d80be8",
|
|
|
|
url = "http://rust-lang.org/src/core")];
|
|
|
|
|
|
|
|
#[comment = "The Rust core library"];
|
|
|
|
#[license = "BSD"];
|
2011-12-08 23:08:23 -06:00
|
|
|
#[crate_type = "lib"];
|
2011-12-05 18:46:37 -06:00
|
|
|
|
2011-12-13 19:52:02 -06:00
|
|
|
export box, char, float, f32, f64, int, str, ptr;
|
|
|
|
export uint, u8, u32, u64, vec, bool;
|
2011-12-13 18:25:51 -06:00
|
|
|
export either, option, result;
|
2011-12-13 19:52:02 -06:00
|
|
|
export ctypes, mtypes, sys, unsafe, comm, task;
|
2011-12-13 18:25:51 -06:00
|
|
|
export extfmt;
|
|
|
|
|
|
|
|
// Built-in-type support modules
|
|
|
|
|
|
|
|
mod box;
|
|
|
|
mod char;
|
|
|
|
mod float;
|
2011-12-13 19:52:02 -06:00
|
|
|
mod f32;
|
|
|
|
mod f64;
|
2011-12-13 18:25:51 -06:00
|
|
|
mod int;
|
|
|
|
mod str;
|
|
|
|
mod ptr;
|
|
|
|
mod uint;
|
|
|
|
mod u8;
|
|
|
|
mod u32;
|
|
|
|
mod u64;
|
|
|
|
mod vec;
|
|
|
|
mod bool;
|
|
|
|
|
2011-12-23 20:48:08 -06:00
|
|
|
// For internal use by char, not exported
|
|
|
|
mod unicode;
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
|
|
// Ubiquitous-utility-type modules
|
|
|
|
|
|
|
|
mod either;
|
|
|
|
mod option;
|
|
|
|
mod result;
|
|
|
|
|
|
|
|
|
|
|
|
// Runtime and language-primitive support
|
|
|
|
|
|
|
|
mod ctypes;
|
2011-12-13 19:52:02 -06:00
|
|
|
mod mtypes;
|
|
|
|
mod cmath;
|
2011-12-13 18:25:51 -06:00
|
|
|
mod sys;
|
|
|
|
mod unsafe;
|
|
|
|
mod comm;
|
|
|
|
mod task;
|
|
|
|
|
|
|
|
// Compiler support modules
|
|
|
|
|
|
|
|
mod extfmt;
|
|
|
|
|
|
|
|
|
2011-12-05 18:46:37 -06:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|