Be
Be
to use `dlopen` for fontconfig instead of linking fontconfig at build time. This allows for easier cross compilation, which I am using to cross compile from x86_64-unknown-linux-gnu to aarch64-unknown-linux-gnu with...
[RawWindowHandle](https://lib.rs/crates/raw-window-handle) is a cross platform API for window handles. Some libraries like [rfd](https://lib.rs/crates/rfd) can make use of a RawWindowHandle (in rfd's case, to parent a popup dialog to the appropriate...
I noticed this repository does not have any Git tags for releases.
[`Client::connect_ports`](https://docs.rs/jack/latest/jack/struct.Client.html#method.connect_ports) requires that the first argument is an input port and the second argument is an output port, however it compiles with arguments that do not satisfy these constraints. In...
ClosureProcessHandler::new creates a ProcessHandler with the provided `process` callback, however it does not provide any way to provide a `buffer_size` callback for the ProcessHandler it creates.
It would be convenient if form_text_input supported filters. The simplest way to do this would be to have a whitelist or blacklist of keys that could be inputted. A more...
As far as I can tell, there is no documentation yet.
Rustc supports [using LLVM's sanitizers](https://doc.rust-lang.org/unstable-book/compiler-flags/sanitizer.html). IIUC this can be used together with compiling the C++ with the same sanitizer as well.
I found this rather surprising. I expected cargo to be invoked in the CMake build step, not the configure step.
Application developers will likely want to link multiple cxx-qt modules into applications. I can think of two approaches this could take: 1. Create a cargo workspace within the application repository...