Skip to content

Commit 0e987e0

Browse files
committed
Update BDK to 1.0.0 and LDK to 0.1.0
1 parent 20a6927 commit 0e987e0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ panic = 'abort' # Abort on panic
2828
default = []
2929

3030
[dependencies]
31-
lightning = { version = "0.0.125", features = ["std"] }
32-
lightning-invoice = { version = "0.32.0" }
33-
lightning-net-tokio = { version = "0.0.125" }
34-
lightning-persister = { version = "0.0.125" }
35-
lightning-background-processor = { version = "0.0.125", features = ["futures"] }
36-
lightning-rapid-gossip-sync = { version = "0.0.125" }
37-
lightning-block-sync = { version = "0.0.125", features = ["rpc-client", "tokio"] }
38-
lightning-transaction-sync = { version = "0.0.125", features = ["esplora-async-https", "time"] }
39-
lightning-liquidity = { version = "0.1.0-alpha.6", features = ["std"] }
31+
lightning = { version = "0.1.0-beta1", features = ["std"] }
32+
lightning-invoice = { version = "0.33.0-beta1" }
33+
lightning-net-tokio = { version = "0.1.0-beta1" }
34+
lightning-persister = { version = "0.1.0-beta1" }
35+
lightning-background-processor = { version = "0.1.0-beta1", features = ["futures"] }
36+
lightning-rapid-gossip-sync = { version = "0.1.0-beta1" }
37+
lightning-block-sync = { version = "0.1.0-beta1", features = ["rpc-client", "tokio"] }
38+
lightning-transaction-sync = { version = "0.1.0-beta1", features = ["esplora-async-https", "time"] }
39+
lightning-liquidity = { version = "0.1.0-beta1", features = ["std"] }
4040

4141
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std"] }
4242
#lightning-invoice = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main" }
@@ -56,9 +56,9 @@ lightning-liquidity = { version = "0.1.0-alpha.6", features = ["std"] }
5656
#lightning-transaction-sync = { path = "../rust-lightning/lightning-transaction-sync", features = ["esplora-async"] }
5757
#lightning-liquidity = { path = "../lightning-liquidity", features = ["std"] }
5858

59-
bdk_chain = { version = "=0.19.0", default-features = false, features = ["std"] }
60-
bdk_esplora = { version = "=0.18.0", default-features = false, features = ["async-https-rustls"]}
61-
bdk_wallet = { version = "=1.0.0-beta.4", default-features = false, features = ["std", "keys-bip39"]}
59+
bdk_chain = { version = "0.21.1", default-features = false, features = ["std"] }
60+
bdk_esplora = { version = "0.20.1", default-features = false, features = ["async-https-rustls", "tokio"]}
61+
bdk_wallet = { version = "1.0.0", default-features = false, features = ["std", "keys-bip39"]}
6262

6363
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
6464
rusqlite = { version = "0.31.0", features = ["bundled"] }
@@ -70,7 +70,7 @@ base64 = { version = "0.22.1", default-features = false, features = ["std"] }
7070
rand = "0.8.5"
7171
chrono = { version = "0.4", default-features = false, features = ["clock"] }
7272
tokio = { version = "1.37", default-features = false, features = [ "rt-multi-thread", "time", "sync", "macros" ] }
73-
esplora-client = { version = "0.9", default-features = false }
73+
esplora-client = { version = "0.11", default-features = false, features = ["tokio", "async-https-rustls"] }
7474
libc = "0.2"
7575
uniffi = { version = "0.27.3", features = ["build"], optional = true }
7676
serde = { version = "1.0.210", default-features = false, features = ["std", "derive"] }
@@ -83,7 +83,7 @@ prost = { version = "0.11.6", default-features = false}
8383
winapi = { version = "0.3", features = ["winbase"] }
8484

8585
[dev-dependencies]
86-
lightning = { version = "0.0.125", features = ["std", "_test_utils"] }
86+
lightning = { version = "0.1.0-beta1", features = ["std", "_test_utils"] }
8787
#lightning = { git = "https://github.com/lightningdevkit/rust-lightning", branch="main", features = ["std", "_test_utils"] }
8888
electrum-client = { version = "0.21.0", default-features = true }
8989
bitcoincore-rpc = { version = "0.19.0", default-features = false }

0 commit comments

Comments
 (0)