sharkdp / hexyl

A command-line hex viewer
Apache License 2.0
8.92k stars 227 forks source link

Vet dependencies #202

Closed GrigorenkoPV closed 10 months ago

GrigorenkoPV commented 10 months ago

Two commits.

  1. Deduplicate predicates

hexyl depends on predicates v2.0. hexyl depends on assert_cmd v2.0, which depends on predicates v3.0. So we end up compiling two versions of the same crate.

Fixed by bumping the direct dependency from 2.0 to 3.0. Shouldn't have broken anything, from what I can tell after reading the changelog and seeing how little the library is actually used in this codebase.

  1. Run cargo update

Not necessary, but since we're at it...

sharkdp commented 10 months ago

Thank you!