Skip to content

Commit

Permalink
fix: unused import warning in plain cargo test (#209)
Browse files Browse the repository at this point in the history
```
$ cargo test
     Compiling pubgrub v0.2.1 (/home/konsti/projects/pubgrub)
  warning: unused import: `pubgrub::version::SemanticVersion`
    --> tests/proptest.rs:14:5
     |
  14 | use pubgrub::version::SemanticVersion;
     |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
     |
     = note: `#[warn(unused_imports)]` on by default
```
  • Loading branch information
konstin authored Apr 21, 2024
1 parent 97951bb commit eb5d174
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/proptest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use pubgrub::range::Range;
use pubgrub::report::{DefaultStringReporter, DerivationTree, External, Reporter};
use pubgrub::solver::{resolve, Dependencies, DependencyProvider, OfflineDependencyProvider};
use pubgrub::type_aliases::SelectedDependencies;
#[cfg(feature = "serde")]
use pubgrub::version::SemanticVersion;
use pubgrub::version_set::VersionSet;

Expand Down

0 comments on commit eb5d174

Please sign in to comment.