2014-05-22 11:28:01 -07:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Debugging utilities for Rust programs
|
|
|
|
//!
|
|
|
|
//! This crate is intended to provide useful functionality when debugging
|
|
|
|
//! programs, such as reflection for printing values. This crate is currently
|
|
|
|
//! entirely experimental as its makeup will likely change over time.
|
|
|
|
//! Additionally, it is not guaranteed that functionality such as reflection
|
|
|
|
//! will persist into the future.
|
|
|
|
|
2014-07-01 07:12:04 -07:00
|
|
|
#![crate_name = "debug"]
|
2014-06-17 22:13:36 -07:00
|
|
|
#![experimental]
|
2014-05-22 11:28:01 -07:00
|
|
|
#![license = "MIT/ASL2"]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#![crate_type = "dylib"]
|
|
|
|
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
|
|
|
|
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
2014-07-11 11:21:57 -07:00
|
|
|
html_root_url = "http://doc.rust-lang.org/master/")]
|
2014-05-22 11:28:01 -07:00
|
|
|
#![experimental]
|
2014-08-29 14:33:08 -07:00
|
|
|
#![feature(managed_boxes, macro_rules)]
|
2014-05-22 11:28:01 -07:00
|
|
|
#![allow(experimental)]
|
|
|
|
|
|
|
|
pub mod fmt;
|
|
|
|
pub mod reflect;
|
|
|
|
pub mod repr;
|