-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3283 from TheBlueMatt/2024-07-human-readable-name…
…s-resolution Support paying directly to Human Readable Names using bLIP 32
- Loading branch information
Showing
17 changed files
with
935 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "lightning-dns-resolver" | ||
version = "0.1.0" | ||
authors = ["Matt Corallo"] | ||
license = "MIT OR Apache-2.0" | ||
repository = "/~https://github.com/lightningdevkit/rust-lightning/" | ||
description = "A crate which implements DNSSEC resolution for lightning clients over bLIP 32 using `tokio` and the `dnssec-prover` crate." | ||
edition = "2021" | ||
|
||
[dependencies] | ||
lightning = { version = "0.0.124", path = "../lightning", default-features = false } | ||
lightning-types = { version = "0.1", path = "../lightning-types", default-features = false } | ||
dnssec-prover = { version = "0.6", default-features = false, features = [ "std", "tokio" ] } | ||
tokio = { version = "1.0", default-features = false, features = ["rt"] } | ||
|
||
[dev-dependencies] | ||
bitcoin = { version = "0.32" } | ||
tokio = { version = "1.0", default-features = false, features = ["macros", "time"] } | ||
lightning = { version = "0.0.124", path = "../lightning", features = ["dnssec", "_test_utils"] } |
Oops, something went wrong.