blob: 5b0f47a1e8758928e4350bb723c7761582a1b93d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#[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;
mod gen;
|