File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1010 strategy :
1111 matrix :
1212 rust :
13- - 1.56.1 # STABLE
14- - 1.46 .0 # MSRV
13+ - 1.60.0 # STABLE
14+ - 1.56 .0 # MSRV
1515 features :
1616 - default
1717 - electrum
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616- Add experimental ` regtest-* ` features to automatically deploy local regtest nodes
1717(bitcoind, and electrs) while running cli commands.
1818- Put cached wallet data in separate directories: ~ /.bdk-bitcoin/<wallet_name>
19+ - New MSRV set to ` 1.56 `
1920
2021## [ 0.4.0]
2122
Original file line number Diff line number Diff line change @@ -22,8 +22,7 @@ fn main() {
2222
2323 let database_features: Vec < String > = vec ! [ key_value_db, sqlite_db]
2424 . iter ( )
25- . map ( |f| f. to_owned ( ) )
26- . flatten ( )
25+ . filter_map ( |f| f. to_owned ( ) )
2726 . collect ( ) ;
2827
2928 if database_features. len ( ) > 1 {
You can’t perform that action at this time.
0 commit comments