rust/src/rustdoc/rustdoc.rc

80 lines
1.5 KiB
Plaintext
Raw Normal View History

//! Rustdoc - The Rust documentation generator
2012-01-15 23:28:10 +01:00
#[link(name = "rustdoc",
2012-08-30 23:05:49 +02:00
vers = "0.4",
2012-01-15 23:28:10 +01:00
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
2012-01-15 23:28:10 +01:00
#[comment = "The Rust documentation generator"];
2012-01-15 23:28:10 +01:00
#[license = "MIT"];
#[crate_type = "bin"];
2012-04-06 02:30:26 +02:00
#[no_core];
#[legacy_modes];
#[legacy_exports];
2012-09-22 02:10:46 +02:00
#[allow(vecs_implicitly_copyable)];
#[allow(non_implicitly_copyable_typarams)];
extern mod core(vers = "0.4");
extern mod std(vers = "0.4");
extern mod rustc(vers = "0.4");
extern mod syntax(vers = "0.4");
2012-04-06 02:30:26 +02:00
use core::*;
use std::par;
2012-01-18 02:22:03 +01:00
#[legacy_exports]
2012-09-22 02:10:46 +02:00
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]
2012-03-03 00:17:13 +01:00
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]
2012-03-07 23:49:52 +01:00
mod prune_hidden_pass;
#[legacy_exports]
mod desc_to_brief_pass;
#[legacy_exports]
2012-03-09 02:00:03 +01:00
mod text_pass;
#[legacy_exports]
mod unindent_pass;
#[legacy_exports]
mod trim_pass;
#[legacy_exports]
mod astsrv;
#[legacy_exports]
mod demo;
#[legacy_exports]
2012-02-03 21:00:49 +01:00
mod sort_pass;
#[legacy_exports]
2012-02-03 21:00:49 +01:00
mod sort_item_name_pass;
#[legacy_exports]
2012-02-21 01:10:54 +01:00
mod sort_item_type_pass;
#[legacy_exports]
mod page_pass;
#[legacy_exports]
2012-03-16 20:20:29 +01:00
mod sectionalize_pass;
#[legacy_exports]
2012-03-16 20:20:29 +01:00
mod escape_pass;
mod prune_private_pass;