@@ -39,17 +39,17 @@ default = []
3939# lightning-liquidity = { version = "0.2.0", features = ["std"] }
4040# lightning-macros = { version = "0.2.0" }
4141
42- lightning = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" std" ] }
43- lightning-types = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
44- lightning-invoice = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" std" ] }
45- lightning-net-tokio = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
46- lightning-persister = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" tokio" ] }
47- lightning-background-processor = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
48- lightning-rapid-gossip-sync = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
49- lightning-block-sync = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" rest-client" , " rpc-client" , " tokio" ] }
50- lightning-transaction-sync = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" esplora-async-https" , " time" , " electrum-rustls-ring" ] }
51- lightning-liquidity = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" std" ] }
52- lightning-macros = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
42+ lightning = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" std" ] }
43+ lightning-types = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
44+ lightning-invoice = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" std" ] }
45+ lightning-net-tokio = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
46+ lightning-persister = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" tokio" ] }
47+ lightning-background-processor = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
48+ lightning-rapid-gossip-sync = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
49+ lightning-block-sync = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" rest-client" , " rpc-client" , " tokio" ] }
50+ lightning-transaction-sync = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" esplora-async-https" , " time" , " electrum-rustls-ring" ] }
51+ lightning-liquidity = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" std" ] }
52+ lightning-macros = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
5353
5454bdk_chain = { version = " 0.23.0" , default-features = false , features = [" std" ] }
5555bdk_esplora = { version = " 0.22.0" , default-features = false , features = [" async-https-rustls" , " tokio" ]}
@@ -66,7 +66,7 @@ bip21 = { version = "0.5", features = ["std"], default-features = false }
6666base64 = { version = " 0.22.1" , default-features = false , features = [" std" ] }
6767getrandom = { version = " 0.3" , default-features = false }
6868chrono = { version = " 0.4" , default-features = false , features = [" clock" ] }
69- tokio = { version = " 1.37" , default-features = false , features = [ " rt-multi-thread" , " time" , " sync" , " macros" , " net " ] }
69+ tokio = { version = " 1.37" , default-features = false , features = [ " rt-multi-thread" , " time" , " sync" , " macros" ] }
7070esplora-client = { version = " 0.12" , default-features = false , features = [" tokio" , " async-https-rustls" ] }
7171electrum-client = { version = " 0.24.0" , default-features = false , features = [" proxy" , " use-rustls-ring" ] }
7272libc = " 0.2"
@@ -79,13 +79,13 @@ async-trait = { version = "0.1", default-features = false }
7979vss-client = { package = " vss-client-ng" , version = " 0.5" }
8080prost = { version = " 0.11.6" , default-features = false }
8181# bitcoin-payment-instructions = { version = "0.6" }
82- bitcoin-payment-instructions = { git = " https://github.com/joostjager /bitcoin-payment-instructions" , branch = " ldk-dcf0c203e166da2348bef12b2e5eff4a250cdec7 " }
82+ bitcoin-payment-instructions = { git = " https://github.com/jkczyz /bitcoin-payment-instructions" , rev = " 0138feb7acefb1e49102a6fb46d7b776bf43265e " }
8383
8484[target .'cfg(windows)' .dependencies ]
8585winapi = { version = " 0.3" , features = [" winbase" ] }
8686
8787[dev-dependencies ]
88- lightning = { git = " https://github.com/lightningdevkit /rust-lightning" , rev = " dcf0c203e166da2348bef12b2e5eff4a250cdec7 " , features = [" std" , " _test_utils" ] }
88+ lightning = { git = " https://github.com/tnull /rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " , features = [" std" , " _test_utils" ] }
8989rand = { version = " 0.9.2" , default-features = false , features = [" std" , " thread_rng" , " os_rng" ] }
9090proptest = " 1.0.0"
9191regex = " 1.5.6"
@@ -172,15 +172,15 @@ harness = false
172172# vss-client-ng = { path = "../vss-client" }
173173# vss-client-ng = { git = "https://github.com/lightningdevkit/vss-client", branch = "main" }
174174#
175- # [patch."https://github.com/lightningdevkit/rust-lightning"]
176- # lightning = { path = "../ rust-lightning/lightning " }
177- # lightning-types = { path = "../ rust-lightning/lightning-types " }
178- # lightning-invoice = { path = "../ rust-lightning/lightning-invoice " }
179- # lightning-net-tokio = { path = "../ rust-lightning/lightning-net-tokio " }
180- # lightning-persister = { path = "../ rust-lightning/lightning-persister " }
181- # lightning-background-processor = { path = "../ rust-lightning/lightning-background-processor " }
182- # lightning-rapid-gossip-sync = { path = "../ rust-lightning/lightning-rapid-gossip-sync " }
183- # lightning-block-sync = { path = "../ rust-lightning/lightning-block-sync " }
184- # lightning-transaction-sync = { path = "../ rust-lightning/lightning-transaction-sync " }
185- # lightning-liquidity = { path = "../ rust-lightning/lightning-liquidity " }
186- # lightning-macros = { path = "../ rust-lightning/lightning-macros " }
175+ [patch ."https://github .com/lightningdevkit/rust-lightning" ]
176+ lightning = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
177+ lightning-types = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
178+ lightning-invoice = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
179+ lightning-net-tokio = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
180+ lightning-persister = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
181+ lightning-background-processor = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
182+ lightning-rapid-gossip-sync = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
183+ lightning-block-sync = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
184+ lightning-transaction-sync = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
185+ lightning-liquidity = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
186+ lightning-macros = { git = " https://github.com/tnull/ rust-lightning" , rev = " 71242155f2b90007e850be89daef4db78d8508f0 " }
0 commit comments