diff options
| author | Arcterus <Arcterus@mail.com> | 2014-02-02 15:20:32 -0800 |
|---|---|---|
| committer | Arcterus <Arcterus@mail.com> | 2014-02-06 10:00:17 -0800 |
| commit | 9752c63035bc78f624c5fa1ca644f15db4e2a0df (patch) | |
| tree | 14d3155467142741ea2a32590015dfc50ef47ef3 /src/librustdoc/lib.rs | |
| parent | f039d10cf73d8bc9a57fcdfe38c5f0b0a3a98b5a (diff) | |
| download | rust-9752c63035bc78f624c5fa1ca644f15db4e2a0df.tar.gz rust-9752c63035bc78f624c5fa1ca644f15db4e2a0df.zip | |
Move getopts out of extra
Diffstat (limited to 'src/librustdoc/lib.rs')
| -rw-r--r-- | src/librustdoc/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 7256e8923fa..48828a1ed06 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -20,16 +20,16 @@ extern mod rustc; extern mod extra; extern mod serialize; extern mod sync; +extern mod getopts; use std::local_data; use std::io; use std::io::{File, MemWriter}; use std::str; -use extra::getopts; -use extra::getopts::groups; use extra::json; use serialize::{Decodable, Encodable}; use extra::time; +use getopts::groups; pub mod clean; pub mod core; @@ -81,7 +81,7 @@ pub fn main() { } pub fn opts() -> ~[groups::OptGroup] { - use extra::getopts::groups::*; + use getopts::groups::*; ~[ optflag("h", "help", "show this help message"), optflag("", "version", "print rustdoc's version"), |
