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 28, 2020
1 parent 509dc5c commit a399ebf
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 a399ebf

Please sign in to comment.