mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-01-19 05:43:55 +01:00
cbdb8cb0cb
`OMDomainResolver` actually does support building DNSSECProofs, so should be setting the `dns_resolution` `NodeFeature` flag.
20 lines
932 B
TOML
20 lines
932 B
TOML
[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"] }
|