Update deps

This commit is contained in:
benthecarman
2023-03-14 10:36:07 -05:00
parent b81d6f4394
commit 665e9ef13e

View File

@@ -15,9 +15,13 @@ keywords = [ "lightning", "bitcoin" ]
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
bech32 = "0.9.1" bech32 = "0.9.1"
bitcoin = "0.29.2" bitcoin = { version = "0.29.2", no-default-features = true }
bip21 = "0.2.0" bip21 = "0.2.0"
lnurl-rs = { version = "0.1.3", no-default-features = true } lnurl-rs = { version = "0.1.3", no-default-features = true }
lightning-invoice = "0.21.0" lightning-invoice = { version = "0.22.0", no-default-features = true }
# todo update when 0.0.114 is released lightning = { version = "0.0.114", no-default-features = true }
lightning = { git = "https://github.com/lightningdevkit/rust-lightning", rev = "f71daed02d159e051e065802155d3ad77edbc124"}
[dev-dependencies]
bitcoin = { version = "0.29.2", features = ["std"] }
lightning = { version = "0.0.114", features = ["std"] }
lightning-invoice = { version = "0.22.0", features = ["std"] }