termoshtt / ocipkg

An OCI registry client for Rust desiged to use distribute static library as a "container"
Apache License 2.0
48 stars 8 forks source link

Pin `git2` dependency to 0.14.2 #70

Closed LingMan closed 2 years ago

LingMan commented 2 years ago

In order to maintain a MSRV of 1.57 the git2 dependency was downgraded from 0.14.4 to 0.13.25 in [1]. This is problematic since versions prior to 0.14 are known to crash on systems with libgit2 >= 1.4.0. Luckily git2 only raised its requirements in version 0.14.3. Thus, pin to 0.14.2 instead of going all the way back to 0.13.x.

[1] https://github.com/termoshtt/ocipkg/pull/66

termoshtt commented 2 years ago

works correctly! Thanks :)