@@ -10,6 +10,8 @@ pub use self::errors::{CargoTestError, CliError, ProcessError};
10
10
pub use self :: flock:: { FileLock , Filesystem } ;
11
11
pub use self :: graph:: Graph ;
12
12
pub use self :: hex:: { hash_u64, short_hash, to_hex} ;
13
+ pub use self :: into_url:: IntoUrl ;
14
+ pub use self :: into_url_with_base:: IntoUrlWithBase ;
13
15
pub use self :: lev_distance:: lev_distance;
14
16
pub use self :: lockserver:: { LockServer , LockServerClient , LockServerStarted } ;
15
17
pub use self :: paths:: { bytes2path, dylib_path, join_paths, path2bytes} ;
@@ -20,8 +22,6 @@ pub use self::read2::read2;
20
22
pub use self :: rustc:: Rustc ;
21
23
pub use self :: sha256:: Sha256 ;
22
24
pub use self :: to_semver:: ToSemver ;
23
- pub use self :: into_url:: IntoUrl ;
24
- pub use self :: into_url_with_base:: IntoUrlWithBase ;
25
25
pub use self :: vcs:: { existing_vcs_repo, FossilRepo , GitRepo , HgRepo , PijulRepo } ;
26
26
pub use self :: workspace:: {
27
27
print_available_benches, print_available_binaries, print_available_examples,
@@ -38,6 +38,8 @@ mod flock;
38
38
pub mod graph;
39
39
pub mod hex;
40
40
pub mod important_paths;
41
+ pub mod into_url;
42
+ mod into_url_with_base;
41
43
pub mod job;
42
44
pub mod lev_distance;
43
45
mod lockserver;
@@ -51,8 +53,6 @@ mod read2;
51
53
pub mod rustc;
52
54
mod sha256;
53
55
pub mod to_semver;
54
- pub mod into_url;
55
- mod into_url_with_base;
56
56
pub mod toml;
57
57
mod vcs;
58
58
mod workspace;
0 commit comments