2012-01-24 01:23:08 +01:00
|
|
|
#[doc = "Rustdoc - The Rust documentation generator"];
|
|
|
|
|
2012-01-15 23:28:10 +01:00
|
|
|
#[link(name = "rustdoc",
|
|
|
|
vers = "0.1",
|
|
|
|
uuid = "f8abd014-b281-484d-a0c3-26e3de8e2412",
|
|
|
|
url = "http://rust-lang.org/doc/rustdoc")];
|
|
|
|
|
2012-01-24 01:25:15 +01:00
|
|
|
#[comment = "The Rust documentation generator"];
|
2012-01-15 23:28:10 +01:00
|
|
|
#[license = "MIT"];
|
|
|
|
#[crate_type = "bin"];
|
2012-01-15 23:56:58 +01:00
|
|
|
|
2012-01-18 02:22:03 +01:00
|
|
|
use std;
|
|
|
|
use rustc;
|
|
|
|
|
2012-01-16 00:06:59 +01:00
|
|
|
mod parse;
|
2012-01-16 02:23:19 +01:00
|
|
|
mod extract;
|
2012-01-16 06:50:55 +01:00
|
|
|
mod attr_parser;
|
2012-01-16 00:23:07 +01:00
|
|
|
mod doc;
|
2012-01-16 23:49:40 +01:00
|
|
|
mod gen;
|
2012-01-17 00:33:06 +01:00
|
|
|
mod fold;
|
2012-01-19 08:48:25 +01:00
|
|
|
mod path_pass;
|
2012-01-17 01:05:59 +01:00
|
|
|
mod attr_pass;
|
2012-01-17 01:55:26 +01:00
|
|
|
mod tystr_pass;
|
2012-01-17 07:50:00 +01:00
|
|
|
mod prune_undoc_pass;
|
2012-01-17 01:55:26 +01:00
|
|
|
mod astsrv;
|