Rexport base64 as a feature from bitcoin crate - #102
Conversation
fc24550 to
8f43c73
Compare
|
@DanGould |
05afe1a to
d09a994
Compare
|
@notmandatory Would you consider this [dev-dependencies] failure an actual failure to comply with msrv? The package builds on 1.57.0 but the tests require 1.63 or newer. Looks like rustls msrv is 1.60 and tls is a dependency for payjoin integration. |
Strictly speaking it's enough to build with the MSRV in CI since that also verifies MSRV version pinning |
|
Try adding this line to the This should fix the CI. Looks like latest |
d09a994 to
eb01765
Compare
bitcoind crate is using minreq 2.9.0 which requires 1.60 MSRV and we want to support 1.57 MSRV
46fac76 to
51607fc
Compare
51607fc to
fb341d7
Compare
|
thank you @notmandatory |
|
Beautiful PR @jbesraa with well ordered, named, and separated commits. Efforts making big progress. @notmandatory thanks a ton for the quick help. How did you identify the minreq version to be pinned? Just intuit that that's where the tls problem came from and check crates.io for recent changes? |
My go-to rust command is |
resolves #30