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