rust-bitcoin / rust-bip39

A Rust library for working with Bitcoin BIP-39 mnemonics
Creative Commons Zero v1.0 Universal
96 stars 61 forks source link

Remove path dev-dependency #70

Open tcharding opened 7 months ago

tcharding commented 7 months ago

This will need the #69 to get past CI.

Currently we are enabling "rand" using a path dependency in the dev-dependencies because of the benches. This is reducing coverage in CI because "std" is always enabled.

Feature gate the bench that requires "rand" and remove the path dependency.

tcharding commented 7 months ago

BTW as far as I can tell the benches code is not being run (or built/checked/linted) in CI.