Byron / prodash

report progress of concurrent applications and display it in various ways
https://docs.rs/prodash
MIT License
354 stars 9 forks source link

`codevis` can't build `prodash` with specified feature combination on Windows #12

Closed alpha-tango-kilo closed 2 years ago

alpha-tango-kilo commented 2 years ago

Raising the issue here as I would have expected a self-explanatory compile error if the feature combination was invalid

cargo build --features "signal-hook render-line-crossterm render-line render-line-autoconfigure progress-tree unit-bytes"

error[E0425]: cannot find value `SIGWINCH` in module `signal_hook::consts`
   --> src\render\line\engine.rs:234:67
    |
234 |             signal_hook::low_level::register(signal_hook::consts::SIGWINCH, || {
    |                                                                   ^^^^^^^^ not found in `signal_hook::consts`

Related: https://github.com/sloganking/codevis/issues/25

Byron commented 2 years ago

Thanks for reporting!

This issue was fixed in v20.0.1.

alpha-tango-kilo commented 2 years ago

Thanks for the fix!