mirror of
https://github.com/LORDBABUINO/stealth.git
synced 2026-05-04 19:29:08 -07:00
Removed from crates/stealth-bitcoincore and moved to bitcoincore as a standalone package. This change is part of the refactor to create separate packages for each component of the stealth project, allowing for better modularity and separation of concerns.
20 lines
610 B
TOML
20 lines
610 B
TOML
[package]
|
|
name = "stealth-bitcoincore"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Bitcoin Core RPC gateway for stealth-engine"
|
|
|
|
[dependencies]
|
|
bitcoin = { workspace = true }
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
|
ini = { package = "rust-ini", version = "0.21" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
stealth-model = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
urlencoding = "2.1"
|