]> git.lizzy.rs Git - rust.git/blob - src/libdebug/lib.rs
librustc: Don't try to perform the magical
[rust.git] / src / libdebug / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Debugging utilities for Rust programs
12 //!
13 //! This crate is intended to provide useful functionality when debugging
14 //! programs, such as reflection for printing values. This crate is currently
15 //! entirely experimental as its makeup will likely change over time.
16 //! Additionally, it is not guaranteed that functionality such as reflection
17 //! will persist into the future.
18
19 #![crate_id = "debug#0.11.0-pre"]
20 #![experimental]
21 #![license = "MIT/ASL2"]
22 #![crate_type = "rlib"]
23 #![crate_type = "dylib"]
24 #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
25        html_favicon_url = "http://www.rust-lang.org/favicon.ico",
26        html_root_url = "http://doc.rust-lang.org/")]
27 #![experimental]
28 #![feature(managed_boxes, macro_rules)]
29 #![allow(experimental)]
30
31 pub mod fmt;
32 pub mod reflect;
33 pub mod repr;