]> Untitled Git - bdk-cli/commit
fix(dependencies): change payjoin version specifier `1.0.0-rc.1` to `=1.0.0-rc.1`
authornymius <155548262+nymius@users.noreply.github.com>
Tue, 17 Mar 2026 14:15:48 +0000 (11:15 -0300)
committernymius <155548262+nymius@users.noreply.github.com>
Tue, 17 Mar 2026 14:15:53 +0000 (11:15 -0300)
commit6a2e398686655d5b5538ad17fd82bd8df37690ca
tree7991e6973abb6e79c36ed4a34ab838e8432fb59b
parent15b6f5b859d8fe96e29c65740d2a41c6eb2e69e3
fix(dependencies): change payjoin version specifier `1.0.0-rc.1` to `=1.0.0-rc.1`

Cargo's version resolution always updates to the latest patch version.
If that patch introduces breaking changes, it breaks your application.

This happened after Payjoin released version 1.0.0-rc.2. Because the
version specified for bdk-cli was 1.0.0-rc.1, a fresh install
automatically updated to the newer patch.

To resolve this without migrating to the latest Payjoin API, and to
prevent future breakages from subsequent 1.0.0-rc.x releases, this
commit pins the Payjoin version strictly to =1.0.0-rc.1.
Cargo.toml