File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
- pub mod options;
3
- pub mod metadata;
2
+ pub ( crate ) mod options;
3
+ mod metadata;
4
4
mod limits;
5
5
mod rustwide_builder;
6
6
mod crates;
@@ -9,6 +9,7 @@ mod queue;
9
9
pub use self :: rustwide_builder:: RustwideBuilder ;
10
10
pub ( crate ) use self :: rustwide_builder:: BuildResult ;
11
11
pub ( crate ) use self :: limits:: Limits ;
12
+ pub ( self ) use self :: metadata:: Metadata ;
12
13
13
14
14
15
use std:: fs;
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use std::borrow::Cow;
16
16
use std:: collections:: HashSet ;
17
17
use std:: path:: Path ;
18
18
use utils:: { copy_doc_dir, parse_rustc_version, CargoMetadata } ;
19
- use Metadata ;
19
+ use super :: Metadata ;
20
20
21
21
const USER_AGENT : & str = "docs.rs builder (https://github.com/rust-lang/docs.rs)" ;
22
22
const DEFAULT_RUSTWIDE_WORKSPACE : & str = ".rustwide" ;
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ extern crate once_cell;
47
47
pub use self :: docbuilder:: RustwideBuilder ;
48
48
pub use self :: docbuilder:: DocBuilder ;
49
49
pub use self :: docbuilder:: options:: DocBuilderOptions ;
50
- pub use self :: docbuilder:: metadata:: Metadata ;
51
50
pub use self :: web:: Server ;
52
51
53
52
pub ( crate ) mod error;
You can’t perform that action at this time.
0 commit comments