Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

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 Apr 1, 2020
1 parent e4f925b commit 3da320b
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 3da320b

Please sign in to comment.