2012-07-04 22:53:12 +01:00
|
|
|
//! Rustdoc - The Rust documentation generator
|
2012-01-23 16:23:08 -08:00
|
|
|
|
2012-01-15 14:28:10 -08:00
|
|
|
#[link(name = "rustdoc",
|
2012-10-12 16:41:25 -07:00
|
|
|
vers = "0.5",
|
2012-01-15 14:28:10 -08:00
|
|
|
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
|
2012-03-28 13:42:17 -07:00
|
|
|
url = "https://github.com/mozilla/rust/tree/master/src/rustdoc")];
|
2012-01-15 14:28:10 -08:00
|
|
|
|
2012-01-23 16:25:15 -08:00
|
|
|
#[comment = "The Rust documentation generator"];
|
2012-01-15 14:28:10 -08:00
|
|
|
#[license = "MIT"];
|
2012-10-03 20:32:30 -04:00
|
|
|
#[crate_type = "lib"];
|
2012-01-15 14:56:58 -08:00
|
|
|
|
2012-04-05 17:30:26 -07:00
|
|
|
#[no_core];
|
2012-09-18 15:52:21 -07:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2012-09-21 17:10:46 -07:00
|
|
|
#[allow(vecs_implicitly_copyable)];
|
|
|
|
#[allow(non_implicitly_copyable_typarams)];
|
2012-09-28 18:38:59 -07:00
|
|
|
#[allow(deprecated_mode)];
|
|
|
|
#[allow(deprecated_pattern)];
|
2012-06-04 18:34:24 -07:00
|
|
|
|
2012-10-12 16:41:25 -07:00
|
|
|
extern mod core(vers = "0.5");
|
|
|
|
extern mod std(vers = "0.5");
|
|
|
|
extern mod rustc(vers = "0.5");
|
|
|
|
extern mod syntax(vers = "0.5");
|
2012-04-05 17:30:26 -07:00
|
|
|
|
2012-09-07 18:08:21 -07:00
|
|
|
use core::*;
|
|
|
|
use std::par;
|
2012-01-17 17:22:03 -08:00
|
|
|
|
2012-09-21 17:10:46 -07:00
|
|
|
mod pass;
|
2012-02-26 16:32:57 -08:00
|
|
|
mod config;
|
2012-01-15 15:06:59 -08:00
|
|
|
mod parse;
|
2012-01-15 17:23:19 -08:00
|
|
|
mod extract;
|
2012-01-15 21:50:55 -08:00
|
|
|
mod attr_parser;
|
2012-01-15 15:23:07 -08:00
|
|
|
mod doc;
|
2012-03-02 15:17:13 -08:00
|
|
|
mod markdown_index_pass;
|
2012-01-24 18:18:14 -08:00
|
|
|
mod markdown_pass;
|
2012-02-29 22:26:28 -08:00
|
|
|
mod markdown_writer;
|
2012-01-16 15:33:06 -08:00
|
|
|
mod fold;
|
2012-01-18 23:48:25 -08:00
|
|
|
mod path_pass;
|
2012-01-16 16:05:59 -08:00
|
|
|
mod attr_pass;
|
2012-01-16 16:55:26 -08:00
|
|
|
mod tystr_pass;
|
2012-03-07 14:49:52 -08:00
|
|
|
mod prune_hidden_pass;
|
2012-01-24 17:19:27 -08:00
|
|
|
mod desc_to_brief_pass;
|
2012-03-08 17:00:03 -08:00
|
|
|
mod text_pass;
|
2012-01-24 22:02:36 -08:00
|
|
|
mod unindent_pass;
|
2012-01-24 17:40:22 -08:00
|
|
|
mod trim_pass;
|
2012-01-16 16:55:26 -08:00
|
|
|
mod astsrv;
|
2012-01-24 20:29:59 -08:00
|
|
|
mod demo;
|
2012-02-03 12:00:49 -08:00
|
|
|
mod sort_pass;
|
|
|
|
mod sort_item_name_pass;
|
2012-02-20 16:10:54 -08:00
|
|
|
mod sort_item_type_pass;
|
2012-03-06 13:56:33 -08:00
|
|
|
mod page_pass;
|
2012-03-16 12:20:29 -07:00
|
|
|
mod sectionalize_pass;
|
|
|
|
mod escape_pass;
|
2012-09-21 18:10:45 -07:00
|
|
|
mod prune_private_pass;
|