You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The types that reside in the current bitcoin.rs file are the ones that come from the rust-bitcoin crate. I have made good progress to pull those out of this repo and allow them to live in a separate crate and simply be imported. This has serious advantages in the long run:
It allows other bitcoin projects that build language bindings using uniffi to leverage these types without re-writing them and maintaining them themselves
If other projects also use those types, it brings more eyes and review on the codebase
We potentially pool the burden of development and exposing of more rust-bitcoin types among more projects
The text was updated successfully, but these errors were encountered:
My current issue is around how to build the Swift package in a way that types from the bdk library can see and use the types from the rust-bitcoin library.
The types that reside in the current
bitcoin.rs
file are the ones that come from the rust-bitcoin crate. I have made good progress to pull those out of this repo and allow them to live in a separate crate and simply be imported. This has serious advantages in the long run:The text was updated successfully, but these errors were encountered: