X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2FCargo.toml;h=135d42a6a81ced0a147775ca9e352d8dcaf0fdc8;hb=494fe6dad94e230f55ba819533e4822288167876;hp=1234cd5c05c0fd34668be44e6bdef43823f11a5a;hpb=2a8a396f1ed612ed0cbd2b6cef7d1816b128c5c9;p=rust-lightning diff --git a/lightning/Cargo.toml b/lightning/Cargo.toml index 1234cd5c..135d42a6 100644 --- a/lightning/Cargo.toml +++ b/lightning/Cargo.toml @@ -3,7 +3,7 @@ name = "lightning" version = "0.0.104" authors = ["Matt Corallo"] license = "MIT OR Apache-2.0" -repository = "https://github.com/rust-bitcoin/rust-lightning/" +repository = "https://github.com/lightningdevkit/rust-lightning/" description = """ A Bitcoin Lightning library in Rust. Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage. @@ -37,13 +37,14 @@ bitcoin = { version = "0.27", default-features = false, features = ["secp-recove secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] } hashbrown = { version = "0.11", optional = true } -hex = { version = "0.3", optional = true } +hex = { version = "0.4", optional = true } regex = { version = "0.1.80", optional = true } +backtrace = { version = "0.3", optional = true } core2 = { version = "0.3.0", optional = true, default-features = false } [dev-dependencies] -hex = "0.3" +hex = "0.4" regex = "0.1.80" # TODO remove this once rust-bitcoin PR #637 is released secp256k1 = { version = "0.20.2", default-features = false, features = ["alloc"] }