Arkadiusz Piekarz
Arkadiusz Piekarz
CMake is one of the most popular portable build systems for C++. Adding support for it to libbacktrace would greatly simplify integration with other projects and increase the popularity of...
`std::error::Error` has an experimental support for [providing a backtrace](https://doc.rust-lang.org/std/error/trait.Error.html#method.backtrace) of type `std::backtrace::Backtrace`. However color-backtrace accepts only types `backtrace::Backtrace` and `failure::Backtrace` in its printing functions. Would it be possible to add...
README suggests appending a path to CMAKE_MODULE_PATH to find Backward-cpp. However that results in a following error: ``` CMake Warning at CMakeLists.txt:7 (find_package): By not providing "FindBackward.cmake" in CMAKE_MODULE_PATH this...
Does relm4 offer any alternative to [gtk-test](https://crates.io/crates/gtk-test) crate? It's very useful for automated integration tests of the whole application, where it allows inspecting the state of widgets and interacting with...
Would it be possible for you to add CMake integration for this project? It is one of the most popular build systems in C++ ecosystem and it would increase the...
I believe currently the biggest "competitor" to Boost.Stacktrace is [Backward-cpp](https://github.com/bombela/backward-cpp). Its main strength is automatic printing of source code context for every frame in the stack trace. That difference doesn't...
As in title, is it possible to do it now? Can dyno::CopyConstructible{} be used for that? So far I wasn't able to write a compilable form of it.
### Description of Problem Building Boost Python on Msys2 results in a linking error, where it cannot find -lpython27 or -lpython36. Packages with Python 2 and 3 in Msys2 respectively...
Does the Python version of symbolic have any documentation? I couldn't find it on https://pypi.org/project/symbolic/ or in the source code. For instance I would like to know how to turn...
When I used `cargo upgrade -i --recursive` on my project with lots of outdated dependencies, it upgraded only part of them. I needed to use `cargo update` afterwards to upgrade...