Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ dnssec-prover = { version = "0.6", default-features = false, optional = true, fe
reqwest = { version = "0.11", default-features = false, optional = true, features = ["rustls-tls-webpki-roots", "json"] }
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
serde_json = { version = "1.0", default-features = false, optional = true, features = ["alloc"] }
silentpayments = "0.4.1"

[dev-dependencies]
tokio = { version = "1.0", default-features = false, features = ["rt", "macros"] }
Expand Down
1 change: 1 addition & 0 deletions src/dns_resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ mod tests {
},
PaymentMethod::LightningBolt12(_) => {},
PaymentMethod::OnChain { .. } => {},
PaymentMethod::SilentPayment { .. } => {},
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/hrn_resolution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ use alloc::boxed::Box;
use alloc::string::String;
use alloc::vec::Vec;

#[derive(Debug)]
/// The first-step resolution of a Human Readable Name.
///
/// It can either represent a resolution using BIP 353 and the DNS or the first step resolution of
Expand Down
Loading