Skip to content

Commit

Permalink
chore(deps): update dependencies in bdk_chain, bdk_testenv, and e…
Browse files Browse the repository at this point in the history
…xamples (fixes bitcoindevkit#1797)

- `bdk_chain`: updated `rusqlite` from `0.31.0` to `0.32.1` to address compatibility and security improvements.
- `bdk_chain`: updated `criterion` from `^0.2` to `0.5.1` in dev dependencies to leverage newer features and bug fixes.
- `bdk_testenv`: updated `electrsd` from `^0.28.0` to `0.29.0` for improved compatibility with the latest versions of `electrs`.
- `example_wallet_rpc` and `example_bitcoind_rpc_polling`: updated `ctrlc` from `^2` to `3.4.5` to ensure compatibility with the latest versions of `ctrlc`.

These updates aim to improve compatibility, performance, and security across relevant crates.
  • Loading branch information
yaegeristhitesh committed Jan 18, 2025
1 parent 1afa439 commit a934c85
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ serde = { version = "1", optional = true, features = ["derive", "rc"] }
miniscript = { version = "12.0.0", optional = true, default-features = false }

# Feature dependencies
rusqlite = { version = "0.31.0", features = ["bundled"], optional = true }
rusqlite = { version = "0.32.1", features = ["bundled"], optional = true }

[dev-dependencies]
rand = "0.8"
proptest = "1.2.0"
bdk_testenv = { path = "../testenv", default-features = false }
criterion = { version = "0.2" }
criterion = { version = "0.5.1" }

[features]
default = ["std", "miniscript"]
Expand Down
2 changes: 1 addition & 1 deletion crates/testenv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workspace = true

[dependencies]
bdk_chain = { path = "../chain", version = "0.21.1", default-features = false }
electrsd = { version = "0.28.0", features = [ "legacy" ], default-features = false }
electrsd = { version = "0.29.0", features = [ "legacy" ], default-features = false }

[dev-dependencies]
bdk_testenv = { path = "." }
Expand Down
2 changes: 1 addition & 1 deletion example-crates/example_bitcoind_rpc_polling/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ edition = "2021"
bdk_chain = { path = "../../crates/chain", features = ["serde"] }
bdk_bitcoind_rpc = { path = "../../crates/bitcoind_rpc" }
example_cli = { path = "../example_cli" }
ctrlc = { version = "^2" }
ctrlc = { version = "3.4.5" }
2 changes: 1 addition & 1 deletion example-crates/example_wallet_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ bdk_bitcoind_rpc = { path = "../../crates/bitcoind_rpc" }

anyhow = "1"
clap = { version = "4.5.17", features = ["derive", "env"] }
ctrlc = "2.0.1"
ctrlc = "3.4.5"

0 comments on commit a934c85

Please sign in to comment.