Skip to content

Commit

Permalink
f missing Cargo.toml stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed Nov 7, 2024
1 parent d043d9f commit 64dceee
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lightning-dns-resolver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
[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-rc1", path = "../lightning", default-features = false }
lightning = { version = "0.0.124", path = "../lightning", 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-rc1", path = "../lightning", features = ["dnssec", "_test_utils"] }
lightning = { version = "0.0.125", path = "../lightning", features = ["dnssec", "_test_utils"] }

0 comments on commit 64dceee

Please sign in to comment.