Dan Farley
Dan Farley
I have the same issue, it happens on all Youtube videos at least (haven't tried others). iPhone 11 Pro Max iOS 15.5 Apollo v 1.13.1
I'm experiencing the same thing on Steam Deck, Firefox doesn't see the Handler as a potential application. Even clicking "Show More" at the bottom doesn't have anything.
Yeah I did, here's my full `cbindgen.toml` ```toml language = "C" autogen_warning = "/* This file is autogenerated by cbindgen. Don't modify this manually. */" cpp_compat = true braces =...
Looks like #112 is somewhat related? `style="tag"` should have fixed it?
Is there a way I can forward declare `struct foo` in Rust so that cbindgen can pick it up?
> For structs that cbindgen doesn't know about... how would it actually know whether it's a struct / an union / something else? Cbindgen should know about `struct foo` since...
Let me see if I can get a minimum repro put together, it's a bit of a mess right now. Not sure if it's enough but here's my `build.rs`: ```Rust...
Ha, sorry the typo is an artifact of me copy/pasting/sanitizing for this issue, I've double checked that things are correctly spelled in the actual code.
We're running into the same issue, unfortunately @taislapta's suggestion didn't work either. We've tried: * Appending to `ca-certificates.crt`: ``` FROM gcr.io/kaniko-project/executor:debug-v0.14.0 COPY certs/custom_cert.crt /kaniko/ssl/certs/ RUN cat /kaniko/ssl/certs/custom_cert.crt >> /kaniko/ssl/certs/ca-certificates.crt INFO[0000]...
> We also derived a custom Kaniko container that had the cert pre-installed and that worked too, but opted for the solution above to avoid maintaining image updates. If you...