Im following Hello Holo Tutorial’s steps and “hc generate zomes/hello rust-proc” works well but next command “hc package” not. i got many errors.
Check the other posts in the forum. I know there was a solution to this but I can’t look for it right now.
1 Like
The solution’s in this thread.
Long story short, just add these lines to your Cargo.toml
file:
futures = "=0.3.2"
futures-util = "=0.3.2"
futures-macro = "=0.3.2"
This came up with a dependency mismatch in the 0.0.47 release of the hdk
1 Like