Having the versions in git with -dev seems to create issues when patching.
Ideally, one can path a dependency like this:
[patch.crates-io]
goose = { git = "" }
However, due to the fact that goose in git is version 0.17.3-dev, one must also change the original version. In addition, doing that, it breaks the use of goose-eggs, because that still requires 0.17.3, even in its git repo.
Having the versions in git with
-dev
seems to create issues when patching.Ideally, one can path a dependency like this:
However, due to the fact that
goose
in git is version0.17.3-dev
, one must also change the original version. In addition, doing that, it breaks the use ofgoose-eggs
, because that still requires0.17.3
, even in its git repo.