rust/src/rustdoc/rustdoc.rc

15 lines
310 B
Plaintext
Raw Normal View History

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")];
#[desc = "The Rust documentation generator"];
#[license = "MIT"];
#[crate_type = "bin"];
mod parse;
mod extract;
mod attr_parser;
mod doc;
2012-01-16 23:49:40 +01:00
mod gen;
mod fold;