@@ -7,10 +7,6 @@ pub use self::cargo_compile::{
7
7
pub use self :: cargo_compile:: { CompileFilter , FilterRule , LibRule , Packages } ;
8
8
pub use self :: cargo_doc:: { doc, DocOptions , OutputFormat } ;
9
9
pub use self :: cargo_fetch:: { fetch, FetchOptions } ;
10
- pub use self :: cargo_generate_lockfile:: generate_lockfile;
11
- pub use self :: cargo_generate_lockfile:: print_lockfile_changes;
12
- pub use self :: cargo_generate_lockfile:: update_lockfile;
13
- pub use self :: cargo_generate_lockfile:: UpdateOptions ;
14
10
pub use self :: cargo_install:: { install, install_list} ;
15
11
pub use self :: cargo_new:: { init, new, NewOptions , NewProjectKind , VersionControl } ;
16
12
pub use self :: cargo_output_metadata:: { output_metadata, ExportInfo , OutputMetadataOptions } ;
@@ -20,6 +16,10 @@ pub use self::cargo_read_manifest::{read_package, read_packages};
20
16
pub use self :: cargo_run:: run;
21
17
pub use self :: cargo_test:: { run_benches, run_tests, TestOptions } ;
22
18
pub use self :: cargo_uninstall:: uninstall;
19
+ pub use self :: cargo_update:: generate_lockfile;
20
+ pub use self :: cargo_update:: print_lockfile_changes;
21
+ pub use self :: cargo_update:: update_lockfile;
22
+ pub use self :: cargo_update:: UpdateOptions ;
23
23
pub use self :: fix:: { fix, fix_exec_rustc, fix_get_proxy_lock_addr, FixOptions } ;
24
24
pub use self :: lockfile:: { load_pkg_lockfile, resolve_to_string, write_pkg_lockfile} ;
25
25
pub use self :: registry:: modify_owners;
@@ -44,7 +44,6 @@ pub(crate) mod cargo_compile;
44
44
pub mod cargo_config;
45
45
mod cargo_doc;
46
46
mod cargo_fetch;
47
- mod cargo_generate_lockfile;
48
47
mod cargo_install;
49
48
mod cargo_new;
50
49
mod cargo_output_metadata;
@@ -55,6 +54,7 @@ pub mod cargo_remove;
55
54
mod cargo_run;
56
55
mod cargo_test;
57
56
mod cargo_uninstall;
57
+ mod cargo_update;
58
58
mod common_for_install_and_uninstall;
59
59
mod fix;
60
60
pub ( crate ) mod lockfile;
0 commit comments