Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Eh2406 committed Dec 10, 2024
1 parent 91e6bf8 commit 7a67e88
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cargo/core/resolver/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ impl ResolveOpts {
pub struct ActivationsKey(InternedString, SemverCompatibility, SourceId);

impl ActivationsKey {
pub fn new(name: InternedString, ver: SemverCompatibility, source_id: SourceId) -> ActivationsKey {
pub fn new(
name: InternedString,
ver: SemverCompatibility,
source_id: SourceId,
) -> ActivationsKey {
ActivationsKey(name, ver, source_id)
}
}
Expand Down

0 comments on commit 7a67e88

Please sign in to comment.