2012-01-23 16:23:08 -08:00
|
|
|
#[doc = "Rustdoc - The Rust documentation generator"];
|
|
|
|
|
2012-01-15 14:28:10 -08:00
|
|
|
#[link(name = "rustdoc",
|
|
|
|
vers = "0.1",
|
|
|
|
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
|
|
|
|
url = "http://rust-lang.org/doc/rustdoc")];
|
|
|
|
|
2012-01-23 16:25:15 -08:00
|
|
|
#[comment = "The Rust documentation generator"];
|
2012-01-15 14:28:10 -08:00
|
|
|
#[license = "MIT"];
|
|
|
|
#[crate_type = "bin"];
|
2012-01-15 14:56:58 -08:00
|
|
|
|
2012-01-17 17:22:03 -08:00
|
|
|
use std;
|
|
|
|
use rustc;
|
|
|
|
|
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-01-24 18:18:14 -08:00
|
|
|
mod markdown_pass;
|
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-01-16 22:50:00 -08:00
|
|
|
mod prune_undoc_pass;
|
2012-01-23 19:23:02 -08:00
|
|
|
mod prune_unexported_pass;
|
2012-01-24 17:19:27 -08:00
|
|
|
mod desc_to_brief_pass;
|
2012-01-24 17:40:22 -08:00
|
|
|
mod trim_pass;
|
2012-01-16 16:55:26 -08:00
|
|
|
mod astsrv;
|