rust/src/libcore/core.rc

59 lines
969 B
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, int, str, ptr, uint, u8, u32, u64, vec, bool;
export either, option, result;
export ctypes, sys, unsafe, comm, task;
export extfmt;
// Built-in-type support modules
mod box;
mod char;
mod float;
mod int;
mod str;
mod ptr;
mod uint;
mod u8;
mod u32;
mod u64;
mod vec;
mod bool;
// Ubiquitous-utility-type modules
mod either;
mod option;
mod result;
// Runtime and language-primitive support
mod ctypes;
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: