multihash-derive-impl is a procedural macro. It will run at compile time and transform your program's source code.
multihash-derive-impl
Run this command in a terminal, in your project's directory:
cargo add multihash-derive-impl
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
Cargo.toml
[dependencies]
multihash-derive-impl = "0.1.2"
You may need to import the macro(s) with use multihash_derive_impl::*.
use multihash_derive_impl::*
multihash_derive_impl
Back to the crate overview.