Skip to content

Commit 64dceee

Browse files
committed
f missing Cargo.toml stuff
1 parent d043d9f commit 64dceee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lightning-dns-resolver/Cargo.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
[package]
22
name = "lightning-dns-resolver"
33
version = "0.1.0"
4+
authors = ["Matt Corallo"]
5+
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/lightningdevkit/rust-lightning/"
7+
description = "A crate which implements DNSSEC resolution for lightning clients over bLIP 32 using `tokio` and the `dnssec-prover` crate."
48
edition = "2021"
59

610
[dependencies]
7-
lightning = { version = "0.0.124-rc1", path = "../lightning", default-features = false }
11+
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
812
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] }
913
tokio = { version = "1.0", default-features = false, features = ["rt"] }
1014

1115
[dev-dependencies]
1216
bitcoin = { version = "0.32" }
1317
tokio = { version = "1.0", default-features = false, features = ["macros", "time"] }
14-
lightning = { version = "0.0.124-rc1", path = "../lightning", features = ["dnssec", "_test_utils"] }
18+
lightning = { version = "0.0.125", path = "../lightning", features = ["dnssec", "_test_utils"] }

0 commit comments

Comments
 (0)