mirror of
https://github.com/stakwork/sphinx-key.git
synced 2026-02-04 23:34:34 +01:00
38 lines
1.7 KiB
TOML
38 lines
1.7 KiB
TOML
[package]
|
|
name = "sphinx-key-broker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "sphinx-key-broker"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# vls-protocol = { path = "../../../evanf/validating-lightning-signer/vls-protocol" }
|
|
# vls-proxy = { path = "../../../evanf/validating-lightning-signer/vls-proxy" }
|
|
# vls-frontend = { path = "../../../evanf/validating-lightning-signer/vls-frontend" }
|
|
# vls-protocol-client = { path = "../../../evanf/validating-lightning-signer/vls-protocol-client" }
|
|
vls-protocol = { git = "https://gitlab.com/Evanfeenstra/validating-lightning-signer", branch = "sphinx-key-1" }
|
|
vls-proxy = { git = "https://gitlab.com/Evanfeenstra/validating-lightning-signer", branch = "sphinx-key-1" }
|
|
vls-frontend = { git = "https://gitlab.com/Evanfeenstra/validating-lightning-signer", branch = "sphinx-key-1" }
|
|
vls-protocol-client = { git = "https://gitlab.com/Evanfeenstra/validating-lightning-signer", branch = "sphinx-key-1" }
|
|
rumqttd = { git = "https://github.com/Evanfeenstra/rumqtt", branch = "metrics" }
|
|
pretty_env_logger = "0.4.0"
|
|
confy = "0.4.0"
|
|
tokio = { version = "1.4.0", features = ["rt", "rt-multi-thread", "macros"] }
|
|
sphinx-key-parser = { path = "../parser" }
|
|
secp256k1 = { version = "0.20", features = ["rand-std", "bitcoin_hashes"] }
|
|
anyhow = {version = "1", features = ["backtrace"]}
|
|
log = "0.4"
|
|
fern = { version = "0.6", features = ["colored"] }
|
|
rumqttc = "0.12.0"
|
|
clap = "=3.0.0-beta.2"
|
|
clap_derive = "=3.0.0-beta.5"
|
|
chrono = "0.4"
|
|
once_cell = "1.12.0"
|
|
bitcoin = "0.28.1"
|
|
async-trait = "0.1"
|
|
url = { version = "2.2" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["vls-protocol/std"]
|