Benjamin Brittain

Results 32 comments of Benjamin Brittain

Would bindgen be amicable to a --no-u128 or similar flag? Maybe a more generic primitive type filtering function? The u128 not being a valid FFI type is a pretty concerning...

I too would appreciate if `backtrace` was optional.

@thvdveld Is this the sort of change you review as well? It's relevant in a 6lowpan context.

oh good! I'm glad you told me that because I literally just started a git bisect trying to figure out what broke :)

I don't think this will have much meaningful code size, but I created a feature. I think future mDNS service discovery functionality should also go under that feature set. I...

Can confirm this fixes the 6LoWPAN fragmentation errors.

Hey Thomas! oof, yeah this code was very wrapped up in the futures 0.1 ecosystem which I would certainly not recommend using anymore. IIRC the serde version used here is...

it looks like this https://docs.rs/serde-xdr/0.5.1/serde_xdr/ is a replacement for half of this repo. (I can't attest to it's quality yet though) and the other half is the codegen, which should...

`serde_xdr` is unaware of the async/await paradigm, it'll just be (de)serialization logic. You'll want to tie it to something like `smol` or another async executor. Here is a good example...

You aren't doing anything wrong, that's currently how it currently works! If you cd into that directory and run it as `/mycmd --help` it should display `Usage: ./mycmd ...` It's...