rust-multihash
                                
                                
                                
                                    rust-multihash copied to clipboard
                            
                            
                            
                        multihash implementation in Rust
related to #196 closes #194 In order to allow for easier transition for downstream users, this adds a few ideas how to implement the identity hasher. Undecided yet is about...
Bumps [rand](https://github.com/rust-random/rand) from 0.7.3 to 0.8.5. Changelog Sourced from rand's changelog. [0.8.5] - 2021-08-20 Fixes Fix build on non-32/64-bit architectures (#1144) Fix "min_const_gen" feature for no_std (#1173) Check libc::pthread_atfork return...
Updates the requirements on [quickcheck](https://github.com/BurntSushi/quickcheck) to permit the latest version. Commits defde6f 1.0.3 32d8b03 impl: eliminate panic on overflowing absolute value 4b11ba8 1.0.2 82373f9 impl: fix signed shrinker 40ebcc6 1.0.1...
Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.36 to 1.0.43. Release notes Sourced from proc-macro2's releases. 1.0.43 Add keywords to crates.io metadata 1.0.42 Improve parsing performance in non-macro mode (#335) Expose a size_hint() for...
Bumps [syn](https://github.com/dtolnay/syn) from 1.0.90 to 1.0.99. Release notes Sourced from syn's releases. 1.0.99 Add categories and keywords to crates.io metadata 1.0.98 Format example code with rustfmt 1.0.97 Update examples 1.0.96...
add support for [schemars](https://lib.rs/crates/schemars) to allow people to allow people to generate json schemas / swagger
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 13 to 17. Release notes Sourced from cachix/install-nix-action's releases. install-nix-action-v17 curl for downloading the installer is now in quiet mode (since all the bugs have been addressed)...
`digest.copy_from_slice(input_digest);` instead of https://github.com/multiformats/rust-multihash/blob/c68638c9736284d0e52aacdcfc606e1d746db9ec/src/multihash.rs#L107-L111 This will stay open till https://github.com/rust-lang/rust/issues/57349
Bumps [pretty_assertions](https://github.com/colin-kiegel/rust-pretty-assertions) from 1.2.0 to 1.2.1. Release notes Sourced from pretty_assertions's releases. v1.2.1 Fixed Fixed a panic caused by diffing two str-like values where only the left has a trailing...
There are _always_ safer ways to compute an identity hash, and this feature can cause otherwise "safe" code to crash. With this feature enabled, `Code::try_from(codec)?.digest(input)` would crash if `codec` was...