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