| #[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 = "MIT"]; |
| #[crate_type = "lib"]; |
| |
| export box, char, float, bessel, f32, f64, int, str, ptr; |
| export uint, u8, u32, u64, vec, bool; |
| export either, option, result; |
| export ctypes, sys, unsafe, comm, task, logging; |
| export extfmt; |
| export math; |
| export tuple; |
| |
| // 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; |
| mod tuple; |
| |
| |
| // Runtime and language-primitive support |
| |
| mod ctypes; |
| mod math; |
| mod cmath; |
| mod sys; |
| mod unsafe; |
| mod comm; |
| mod task; |
| mod logging; |
| |
| // 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: |