Mike Hogye
Mike Hogye
Any hope this will get fixed, or is it fundamentally Hard somehow? We're running FDB in a container as part of a [Testcontainers](https://testcontainers.com/) setup: (1) start an FDB container, (2)...
I love @denis-ilchishin's [workaround](https://github.com/oven-sh/bun/issues/5866#issuecomment-2119689754) of importing entrypoints in the build script. However, note his caveat that it doesn't handle all cases. I naively tried to use it to build a...
A partial workaround is to pass `--manifest-path=${workspaceFolder}/rust/Cargo.toml` as a Cargo arg: ``` "cargo": { "args": [ "build", "--manifest-path=${workspaceFolder}/rust/Cargo.toml", ... ``` HOWEVER, this won't pick up `${workspaceFolder}/rust/rust-toolchain.toml` (... which is a...
An uglier (but more effective) workaround is to use a wrapper script that first calls `cd` and then calls `cargo`. **Step 1**: Write the wrapper script ``` #!/bin/bash set -euo...