Skip to content

Commit df35092

Browse files
committed
Auto merge of #12876 - ehuss:remove-warning, r=weihanglo
Fix unused_imports warning rust-lang/rust#116033 recently improved the fidelity of the unused_imports warning, causing this code to surface as something that is not being used (because the `context` module is not publicly exported, and nothing was referencing these imports). This fixes the warning by removing the unused imports.
2 parents f5418fc + 3dcf93f commit df35092

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/cargo/core/resolver/context.rs

-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ use std::collections::HashMap;
1010
use std::num::NonZeroU64;
1111
use tracing::debug;
1212

13-
pub use super::encode::Metadata;
14-
pub use super::encode::{EncodableDependency, EncodablePackageId, EncodableResolve};
15-
pub use super::resolve::Resolve;
16-
1713
// A `Context` is basically a bunch of local resolution information which is
1814
// kept around for all `BacktrackFrame` instances. As a result, this runs the
1915
// risk of being cloned *a lot* so we want to make this as cheap to clone as

0 commit comments

Comments
 (0)