Thomas Chiantia

Results 34 comments of Thomas Chiantia

> I'm pretty sure you can, the example I shared above came from the same docs on the interpolation section ([link](https://shopify.dev/docs/themes/architecture/locales/storefront-locale-files#interpolation)). woops, looks like you're right > Using liquid-rust you...

This workaround seems to work for me. from: https://github.com/mozilla/cbindgen/issues/347 ```rust let crate_dir = env::var("CARGO_MANIFEST_DIR").expect("invalid manifest dir"); env::set_var("CARGO_EXPAND_TARGET_DIR", crate_dir.clone()); ``` Could be a cargo expand issue perhaps, or the way cbindgen...

> Yeah this seems unlikely to be a cbindgen bug per se, and more of a windows limitation with long command line arguments / paths... ya. I run into permutations...

Your solution in issue #202 with CARGO_MANIFEST_OVERRIDE works well for me. One thing that is unfortunate though is that when writing tests, the rust analyzer does not detect this, so...