rust/src/libcore/core.rc

69 lines
1.1 KiB
Plaintext
Raw Normal View History

#[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"];
#[crate_type = "lib"];
export box, char, float, bessel, f32, f64, int, str, ptr;
export uint, u8, u32, u64, vec, bool;
export either, option, result;
2011-12-23 02:31:24 +01:00
export ctypes, sys, unsafe, comm, task;
export extfmt;
export math;
// Built-in-type support modules
mod box;
mod char;
mod float;
mod bessel;
mod f32;
mod f64;
mod int;
mod str;
mod ptr;
mod uint;
mod u8;
mod u32;
mod u64;
mod vec;
mod bool;
// For internal use by char, not exported
mod unicode;
// Ubiquitous-utility-type modules
mod either;
mod option;
mod result;
// Runtime and language-primitive support
mod ctypes;
mod math;
mod cmath;
mod sys;
mod unsafe;
mod comm;
mod task;
// Compiler support modules
mod extfmt;
// 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: