multiformats / rust-multihash

multihash implementation in Rust
https://github.com/multiformats/multihash
Other
150 stars 60 forks source link

feat: don't activate features for MSRV check #318

Closed thomaseizinger closed 1 year ago

thomaseizinger commented 1 year ago

We only activate std by default and don't use any very recent std features. Other features will bring in dependencies where we don't control the MSRV policy. Thus, we don't guarantee a MSRV with features activated.

Resolves #317.