Skip to content

Commit

Permalink
[feature] make FeatureEdge no longer Eq, PartialEq or Hash
Browse files Browse the repository at this point in the history
This is because we're going to replace the Dependency enum's variants with
TargetPredicates, which don't implement any of those.

We may reintroduce this in the future if necessary.
  • Loading branch information
sunshowers committed Mar 27, 2020
1 parent 33d84ac commit d5c259e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guppy/src/graph/feature/graph_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ impl FeatureNode {
}

/// Information about why a feature depends on another feature.
#[derive(Clone, Debug, Eq, Hash, PartialEq)]
#[derive(Clone, Debug)]
pub(in crate::graph) enum FeatureEdge {
/// This edge is from a feature to its base package.
FeatureToBase,
Expand Down

0 comments on commit d5c259e

Please sign in to comment.