rust/src/rustdoc/rustdoc.rc
2012-10-12 16:41:32 -07:00

82 lines
1.5 KiB
Plaintext

//! Rustdoc - The Rust documentation generator
#[link(name = "rustdoc",
vers = "0.5",
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
#[comment = "The Rust documentation generator"];
#[license = "MIT"];
#[crate_type = "bin"];
#[no_core];
#[legacy_modes];
#[legacy_exports];
#[allow(vecs_implicitly_copyable)];
#[allow(non_implicitly_copyable_typarams)];
#[allow(deprecated_mode)];
#[allow(deprecated_pattern)];
extern mod core(vers = "0.5");
extern mod std(vers = "0.5");
extern mod rustc(vers = "0.5");
extern mod syntax(vers = "0.5");
use core::*;
use std::par;
#[legacy_exports]
mod pass;
#[legacy_exports]
mod config;
#[legacy_exports]
mod parse;
#[legacy_exports]
mod extract;
#[legacy_exports]
mod attr_parser;
#[legacy_exports]
mod doc;
#[legacy_exports]
mod markdown_index_pass;
#[legacy_exports]
mod markdown_pass;
#[legacy_exports]
mod markdown_writer;
#[legacy_exports]
mod fold;
#[legacy_exports]
mod path_pass;
#[legacy_exports]
mod attr_pass;
#[legacy_exports]
mod tystr_pass;
#[legacy_exports]
mod prune_hidden_pass;
#[legacy_exports]
mod desc_to_brief_pass;
#[legacy_exports]
mod text_pass;
#[legacy_exports]
mod unindent_pass;
#[legacy_exports]
mod trim_pass;
#[legacy_exports]
mod astsrv;
#[legacy_exports]
mod demo;
#[legacy_exports]
mod sort_pass;
#[legacy_exports]
mod sort_item_name_pass;
#[legacy_exports]
mod sort_item_type_pass;
#[legacy_exports]
mod page_pass;
#[legacy_exports]
mod sectionalize_pass;
#[legacy_exports]
mod escape_pass;
mod prune_private_pass;