Tv

Results 377 comments of Tv

This might be a duplicate of #8732?

I triggered something very similar by having a crate named `foo_bar` (because `foo` was taken), with the binary in `src/bin/foo/main.rs` and thus named simply `foo`. I called `clap_complete::generate("bash", &mut command,...

As far as I understand, Git smudge/clean filters are unable to replace regular files with symlinks, or vice versa, and they are also unable to change symlink targets for files...

I believe the link was meant to be https://github.com/nhooyr/websocket/issues/402

For anyone else stumbling here after a search: This issue seems to be so old that Keystone got rewritten in the meanwhile. As far as I can tell, in Keystone...

> 3. Ship precompiled binaries This tends to break in spectacular ways on less mainstream Linux boxes. musl vs glibc, nixos's /nix/store everywhere & `patchelf`, and so on. You'll end...

I hate to sound like a fanboy but maybe WASM can solve this -- compile the (guts of the) `capnp` C++ code into a WASM blob, put the file in...

And for the sake of the conversation, here's the RIIR solution for protobuf: https://github.com/andrewhickman/protox

It seems I can trigger this without WASI: ``` #[wasm_bindgen(module = "...")] extern "C" { pub type Foo; #[wasm_bindgen(method)] pub fn bar(this: &Foo, callback: &Closure); } ... let my_closure =...