refactor(api): use ini crate to parse bitcoin.conf

Replace the hand-rolled INI parser in read_bitcoin_conf_credentials
with the rust-ini crate (imported as 'ini'). The function shrinks
from ~35 lines to 6 and we stop maintaining INI parsing semantics
in this repo.
This commit is contained in:
LORDBABUINO
2026-05-11 20:23:11 -03:00
parent 52fb5b4c39
commit 86e0b40854
2 changed files with 7 additions and 36 deletions
+1
View File
@@ -13,6 +13,7 @@ readme = "README.md"
[dependencies]
axum = { workspace = true }
ini = { package = "rust-ini", version = "0.21.3" }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
stealth-bitcoincore = { path = "../bitcoincore" }