Sam Vervaeck
Sam Vervaeck
`Cargo.toml` depends on [gtk](https://crates.io/crates/gtk) but the crate is unmaintained. This is the message on crates.io: ``` UNMAINTAINED Rust bindings for the GTK+ 3 library (use gtk4 instead) ``` Ignoring this...
I'm using the latest version of CMake on Arch Linux and I'm getting the following error: ``` $ cmake -B build -S . -G Ninja [output omitted] $ ninja -C...
In the light of GitoxideLabs/gitoxide#2139 I was wondering if it is possible to add a `bformat!` library macro to this crate that does much the same thing as `format!` but...
### Current behavior 😯 Using [this example](https://github.com/GitoxideLabs/gitoxide/blob/main/gix/examples/clone.rs), I tried cloning a simple repository using GitOxide but got the following cryptic error message: ``` Url: "https://github.com/samvv/evcape.git" Cloning "https://github.com/samvv/evcape.git" into "evcape"... Error:...
This pull request continues the conversation in #142 and adds support for NAT-PMP. Some remarks: - The ports are written to `/config/protonvpn-port-tcp.txt` and `/config/protonvpn-port-udp.txt` inside the Docker container - Nothing...
I'm creating separate issues for the separate build errors I'm encountering. I hope that's OK. Though it seems I'm stuck on this one, so it will probably be my last...
Hi, I have read your issue on the [TypeScript repo](https://github.com/microsoft/TypeScript/issues/47658). It was inspiring. Just to educate myself I'm trying to replicate your idea in Rust. CMake code generation fails with:...
Trying to construct a [`git2::IndexTime`](https://docs.rs/git2/latest/git2/struct.IndexTime.html), I noticed that the signature of `new` is not year 2038 compatible. ```rust pub fn new(seconds: i32, nanoseconds: u32) -> IndexTime ``` The function takes...