KokaKiwi / rust-hex

A basic crate to encode values to hexadecimal representation. Originally extracted from rustc-serialize.
https://crates.io/crates/hex
Apache License 2.0
203 stars 57 forks source link

Update dev-dependencies #63

Open taiki-e opened 3 years ago

taiki-e commented 3 years ago
codecov-commenter commented 3 years ago

Codecov Report

Merging #63 (4f39df9) into main (aa8f300) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##             main      #63   +/-   ##
=======================================
  Coverage   94.55%   94.55%           
=======================================
  Files           4        4           
  Lines         147      147           
=======================================
  Hits          139      139           
  Misses          8        8           
Impacted Files Coverage Δ
tests/version-number.rs 100.00% <ø> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update aa8f300...4f39df9. Read the comment docs.

Luro02 commented 3 years ago

The new version of pretty-assertions seems to have caused a regression, which is not documented in the changelog. So it no longer compiles for crates, which have #![no_std] enabled.

taiki-e commented 3 years ago

The new version of pretty-assertions seems to have caused a regression, which is not documented in the changelog. So it no longer compiles for crates, which have #![no_std] enabled.

Well, pretty_assertions doesn't originally support no_std, so that wouldn't necessarily be considered a breaking change.

Luro02 commented 3 years ago

@taiki-e this seems to be fixed with the latest release of pretty-assertions, see: https://github.com/colin-kiegel/rust-pretty-assertions/blob/main/CHANGELOG.md#added