Bouke van der Bijl
Bouke van der Bijl
For those coming across this issue, you can also set `WASM_BINDGEN_WEAKREF=1` and `WASM_BINDGEN_EXTERNREF=1` environment flags and they will be passed down to wasm-bindgen
Another option would be to treat non-c-style enums like structs, so they're wrapped in a `class` on the JavaScript side
I have a specific use case for this: I have some machines that are on a local `10.x.x.x` network that I want to make accessible over a custom domain name...
I've started work on this feature here: https://github.com/tokio-rs/tokio/pull/5936 Comments welcome, especially if there's other features/methods that need to be added while I'm at it.
And note that to do it properly you need to implement the pubgrub and walk the dependency tree from the pyproject.toml to figure out what packages are actually required.
Yeah it needs to use that evaluator to determine which top-level packages need to be installed, but poetry uses the [solver](https://github.com/python-poetry/poetry/blob/master/src/poetry/puzzle/solver.py) also during installation to figure out which packages in...
I figured out a nice way to filter out packages on macOS, pass this as `overrides` to `mkPoetryApplication`: ```nix overrides = [ (import ./poetry-overrides.nix) pkgs.poetry2nix.defaultPoetryOverrides (self: super: { pyrealsense2 =...
This is fixed
Hey @waynr! Good suggestion, added another test case
Added it to the changelog