Cargo utilizes `git ls-remote` to resolve git dependencies specified by commit hashes. GitHub only advertises commits that are reachable from branches, tags, or PR references. The `bip353-plugin` was referencing an orphaned commit in the `bitcoin-payment-instructions` dependency that was unreachable through any advertised reference. This can be resolved by installing the tarball release v0.5.0. Changelog-None.
30 lines
730 B
TOML
30 lines
730 B
TOML
[package]
|
|
name = "cln-bip353"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "BIP-353 lookups"
|
|
homepage = "https://github.com/ElementsProject/lightning/tree/master/plugins"
|
|
repository = "https://github.com/ElementsProject/lightning"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
bytes = "1"
|
|
log = { version = "0.4", features = ['std'] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = "1"
|
|
|
|
log-panics = "2"
|
|
|
|
cln-plugin = { version = "0.5", path = "../../plugins" }
|
|
|
|
bitcoin-payment-instructions = { version = "0.5.0", features = ["http"] }
|
|
|
|
reqwest = { version = "0.11", default-features = false, features = [
|
|
"rustls-tls",
|
|
"socks",
|
|
] }
|
|
|
|
bitcoin = { version = "0.32", default-features = false }
|