Paolo Borelli

Results 27 comments of Paolo Borelli

The abi checks also fail on Windows. I disabled the sys tests for all crates except cairo in https://github.com/gtk-rs/gtk-rs/pull/256

You can see the output in this run: https://github.com/pbor/gtk-rs/runs/1801152489?check_suite_focus=true Now that I check it, we might be running in something simpler since it is just not finding a file...

One thing to actually check is whether saying it is a "view" it is correct... I think adding items to a heap-allocated dict is legit

We use Marco's patch in our project at work. The use case is the one Marco described, we have library we are incrementally porting to rust and we want to...

Sebastian suggested it might be worth looking at bindgen (not cbindgen): it can generate various ABI tests for the stuff it binds, we can probably learn from that (and it...

well, I was trying to see what is in the dict, so that kind of defeats the point :)

It seems to me that it is the lint that is wrong 1. `to_value_optional(s: Option)` is taking `&Self`... 2. `to_glib_none_from_slice` is taking `&[]`

This currently fails for gdk-pixbuf due to https://github.com/gdesmott/system-deps/issues/28 With regard to Windows CI, the good news is that this approach works and the C programs are compiled and the layout...

> It's available since Visual Studio 2019 version 16.7.0 from what I can see, and you can enable it via `/std:c11`. Should maybe just require that version for running the...

the problem is that we have: ``` char: "%c", \ signed char: "%hhd", \ unsigned char: "%hhu", \ ``` so we are printing them differently