Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #33

Merged
merged 1 commit into from
Jul 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ targets = ["cfg-expr/targets"]

[dependencies]
# Used for acquiring and/or deserializing `cargo metadata` output
cargo_metadata = "0.13"
cargo_metadata = "0.14"
# Used to parse and evaluate cfg() expressions for dependencies
cfg-expr = "0.7"
cfg-expr = "0.8"
# Used to create and traverse graph structures
petgraph = "0.5"
petgraph = "0.6"
# Used for checking version requirements
semver = "0.11" # Using the same version as cargo_metadata
semver = "1.0"

[dev-dependencies]
# Used to print colored diffs in case of test failures
Expand Down
2 changes: 1 addition & 1 deletion tests/misc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ fn iter_matches() {
.unwrap();

{
let any = krates::semver::VersionReq::any();
let any = krates::semver::VersionReq::STAR;
let mut iter = krates.search_matches("winapi", &any);

let win28 = iter.next().unwrap();
Expand Down