Skip to content

Commit d2e26cc

Browse files
committed
Upgrade rust-lightning for toctou race narrowing
1 parent f806df2 commit d2e26cc

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
@@ -41,18 +41,18 @@ default = []
4141
# lightning-liquidity = { version = "0.2.0", features = ["std"] }
4242
# lightning-macros = { version = "0.2.0" }
4343

44-
# Branch: https://github.com/moneydevkit/rust-lightning/commits/lsp-0.2.0/
45-
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["std"] }
46-
lightning-types = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79" }
47-
lightning-invoice = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["std"] }
48-
lightning-net-tokio = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79" }
49-
lightning-persister = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["tokio"] }
50-
lightning-background-processor = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79" }
51-
lightning-rapid-gossip-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79" }
52-
lightning-block-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["rest-client", "rpc-client", "tokio"] }
53-
lightning-transaction-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
54-
lightning-liquidity = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["std"] }
55-
lightning-macros = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79" }
44+
# Branch: https://github.com/moneydevkit/rust-lightning/commits/austin_mdk-608_reduce-toctou-window/
45+
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["std"] }
46+
lightning-types = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5" }
47+
lightning-invoice = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["std"] }
48+
lightning-net-tokio = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5" }
49+
lightning-persister = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["tokio"] }
50+
lightning-background-processor = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5" }
51+
lightning-rapid-gossip-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5" }
52+
lightning-block-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["rest-client", "rpc-client", "tokio"] }
53+
lightning-transaction-sync = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["esplora-async-https", "time", "electrum-rustls-ring"] }
54+
lightning-liquidity = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["std"] }
55+
lightning-macros = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5" }
5656

5757
#lightning = { path = "../rust-lightning/lightning", features = ["std"] }
5858
#lightning-types = { path = "../rust-lightning/lightning-types" }
@@ -100,8 +100,8 @@ winapi = { version = "0.3", features = ["winbase"] }
100100

101101
[dev-dependencies]
102102
# lightning = { version = "0.2.0", features = ["std", "_test_utils"] }
103-
# Branch: https://github.com/moneydevkit/rust-lightning/commits/lsp-0.2.0/
104-
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "c14b445c941614f0e76d52afd0c84a6bc3078c79", features = ["std", "_test_utils"] }
103+
# Branch: https://github.com/moneydevkit/rust-lightning/commits/austin_mdk-608_reduce-toctou-window/
104+
lightning = { git = "https://github.com/moneydevkit/rust-lightning", rev = "8f95894702330da28c97d4521af03f28b0ffcfb5", features = ["std", "_test_utils"] }
105105
#lightning = { path = "../rust-lightning/lightning", features = ["std", "_test_utils"] }
106106
proptest = "1.0.0"
107107
regex = "1.5.6"

0 commit comments

Comments
 (0)