@@ -5,7 +5,6 @@ pub use self::cargo_compile::{
5
5
pub use self :: cargo_compile:: { CompileFilter , FilterRule , LibRule , Packages } ;
6
6
pub use self :: cargo_doc:: { doc, DocOptions } ;
7
7
pub use self :: cargo_fetch:: { fetch, FetchOptions } ;
8
- pub use self :: cargo_sync_lockfile:: { sync_lockfile, SyncLockfileOptions } ;
9
8
pub use self :: cargo_generate_lockfile:: generate_lockfile;
10
9
pub use self :: cargo_generate_lockfile:: update_lockfile;
11
10
pub use self :: cargo_generate_lockfile:: UpdateOptions ;
@@ -16,6 +15,7 @@ pub use self::cargo_package::{package, PackageOpts};
16
15
pub use self :: cargo_pkgid:: pkgid;
17
16
pub use self :: cargo_read_manifest:: { read_package, read_packages} ;
18
17
pub use self :: cargo_run:: run;
18
+ pub use self :: cargo_sync_lockfile:: { sync_lockfile, SyncLockfileOptions } ;
19
19
pub use self :: cargo_test:: { run_benches, run_tests, TestOptions } ;
20
20
pub use self :: cargo_uninstall:: uninstall;
21
21
pub use self :: fix:: { fix, fix_maybe_exec_rustc, FixOptions } ;
@@ -34,7 +34,6 @@ mod cargo_clean;
34
34
mod cargo_compile;
35
35
mod cargo_doc;
36
36
mod cargo_fetch;
37
- mod cargo_sync_lockfile;
38
37
mod cargo_generate_lockfile;
39
38
mod cargo_install;
40
39
mod cargo_new;
@@ -43,6 +42,7 @@ mod cargo_package;
43
42
mod cargo_pkgid;
44
43
mod cargo_read_manifest;
45
44
mod cargo_run;
45
+ mod cargo_sync_lockfile;
46
46
mod cargo_test;
47
47
mod cargo_uninstall;
48
48
mod common_for_install_and_uninstall;
0 commit comments