Ximo Guanter

Results 11 issues of Ximo Guanter

Hi @denzp! First of all, many many thanks for this kick-ass project. I use it for all of my dockerized rust projects and it is a truly great project. I'm...

hi @denzp! i wanted to make you aware that i have temporarily forked your project at https://github.com/edrevo/dockerfile-plus i would love to contribute back the (admittedly small) changes i have made...

I've noticed that the Cargo.lock file is gitignored in this repo, and unfortunately the repo doesn't compile of out the box anymore due to a change in indexmap::IndexSet (which now...

I'm interested in selfhosting a tunnelto server, but I wouldn't want anyone on the internet to be able to create tunnels with my server. I see there is some API...

I am trying to migrate from 5.0.0 to 7.0.0, but I see that DerivedReads now has an extra TypeTag parameter. The README contains the following snippet, which I'm not sure...

Many thanks for open sourcing this great library! Would you consider uploading it to Maven Central? I can't add jitpack as a maven repository in some of the projects I'd...

### Reproduction steps The following Rust code passes in git2-rs 0.16.1 (which uses libgit2 1.5.1) but fails on 0.17.0 (which uses libgit2 1.6.3) ```rust #[test] fn test_mempack_issue() -> Result {...

Both ODB and Repository are ref-counted objects (see https://github.com/libgit2/libgit2/blob/2f20fe8869d7a1df7c9b7a9e2939c1a20533c6dc/src/libgit2/odb.c#L930 for example) so calling `free` doesn't necessarily mean that the underlying object is being freed. There are several methods in git2-rs...

Fixes https://github.com/rust-lang/git2-rs/issues/928 This allows users to use the libgit2-sys binding for things that might not have git2 support yet.

Sometimes when using `git2` I'd like to use some `libgit2` functionality that isn't exposed. `libgit2-sys` is already exporting the functions I am interested in, but I cannot access the raw...