-
🤕 Fixes
-
Fix
publishandpreviewbug for projects with a-- jaysonsantos, issue/36 pull/38Rust is a sometimes surprisingly opinionated language! When your
Cargo.tomlspecifies a project
name with a hypen(-) in the name, the Rust compiler will implicitly understand this as a_for
all imports and when it creates compiled artifacts it will name them with a_.The original implementation of
wranglerskipped over this, and as a result would go looking for a
wasm file with a-when it should have been looking for a_. This resulted in a bit of a gross
error message that stated that a file was not found.We've fixed this now- so go ahead and name your packages with
-s!
-
-
📖 Documentation
-
Install instructions with OpenSSL troubleshooting notes - AustinCorridor, issue/35 pull/43
Because of
wrangler's use ofcargo-generatewe use OpenSSL. Classically, this is a tricky
dependency. Some users may run into issue with it! We've documented the steps to fix it on MacOS-
if you run into this on other platforms, we'd love a PR! -
Typo and casing fixes - neynah, pull/42
First releases almost always have some typos. Now they're fixed!
-