Skip to content

Commit ad44f0e

Browse files
committed
Fix for rustfmt
1 parent 4ed0537 commit ad44f0e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/bin/cargo/commands/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ pub mod check;
8484
pub mod clean;
8585
pub mod doc;
8686
pub mod fetch;
87-
pub mod sync_lockfile;
8887
pub mod fix;
8988
pub mod generate_lockfile;
9089
pub mod git_checkout;
@@ -104,6 +103,7 @@ pub mod run;
104103
pub mod rustc;
105104
pub mod rustdoc;
106105
pub mod search;
106+
pub mod sync_lockfile;
107107
pub mod test;
108108
pub mod tree;
109109
pub mod uninstall;

src/cargo/ops/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ pub use self::cargo_compile::{
55
pub use self::cargo_compile::{CompileFilter, FilterRule, LibRule, Packages};
66
pub use self::cargo_doc::{doc, DocOptions};
77
pub use self::cargo_fetch::{fetch, FetchOptions};
8-
pub use self::cargo_sync_lockfile::{sync_lockfile, SyncLockfileOptions};
98
pub use self::cargo_generate_lockfile::generate_lockfile;
109
pub use self::cargo_generate_lockfile::update_lockfile;
1110
pub use self::cargo_generate_lockfile::UpdateOptions;
@@ -16,6 +15,7 @@ pub use self::cargo_package::{package, PackageOpts};
1615
pub use self::cargo_pkgid::pkgid;
1716
pub use self::cargo_read_manifest::{read_package, read_packages};
1817
pub use self::cargo_run::run;
18+
pub use self::cargo_sync_lockfile::{sync_lockfile, SyncLockfileOptions};
1919
pub use self::cargo_test::{run_benches, run_tests, TestOptions};
2020
pub use self::cargo_uninstall::uninstall;
2121
pub use self::fix::{fix, fix_maybe_exec_rustc, FixOptions};
@@ -34,7 +34,6 @@ mod cargo_clean;
3434
mod cargo_compile;
3535
mod cargo_doc;
3636
mod cargo_fetch;
37-
mod cargo_sync_lockfile;
3837
mod cargo_generate_lockfile;
3938
mod cargo_install;
4039
mod cargo_new;
@@ -43,6 +42,7 @@ mod cargo_package;
4342
mod cargo_pkgid;
4443
mod cargo_read_manifest;
4544
mod cargo_run;
45+
mod cargo_sync_lockfile;
4646
mod cargo_test;
4747
mod cargo_uninstall;
4848
mod common_for_install_and_uninstall;

0 commit comments

Comments
 (0)