Closed noaheverett closed 2 years ago
Thanks @noaheverett . Issue was happening due to missing release for last commit. I've bumped the version and made a new release.
Confirmed working via shards update
, thank you @naqvis!
Whoops I spoke too soon with fresh project init
Error: Error: can't find file 'wasmer-crystal'
On a fresh project via crystal init app .
then adding the wasmer-crystal
dependency, shards install works correctly. However when requiring the shard it fails on compile with: Error: can't find file 'wasmer-crystal'
I can manually fix by re-naming the wasmer-crystal
shard directory to wasmer
and changing to require "wasmer"
It worked on my older project where wasmer
was previously installed in the old directory and I didn't catch it, apologies!
Thanks @noaheverett . Renamed shard back to wasmer
, updated shard.yml and README to reflect the changes.
When adding the shard to a crystal project via:
Gives the following error on install:
To fix, the shard name has to be changed just
wasmer
to:I think this may be due to the change at bdefa27 and possibly not updated elsewhere?
Thank you for your work on this shard, very useful!