mirror of
https://github.com/talaia-labs/rust-teos.git
synced 2026-08-13 12:33:22 +02:00
- Add toolchain - Common: - bitcoin v0.32.0; - lightning v0.1.0 - TEOS: - bitcoin v0.32.0; - bitcoincore-rpc v0.19.0; - lightning v0.1.0; - lightning-net-tokio v0.1.0; - lightning-block-sync v0.1.0 - Watchtower-Plugin: - bitcoin v0.32.0; - cln-plugin v0.3.0
36 lines
1,002 B
TOML
Executable file
36 lines
1,002 B
TOML
Executable file
[package]
|
|
name = "watchtower-plugin"
|
|
version = "0.2.0"
|
|
authors = ["Sergi Delgado Segura <sergi.delgado.s@gmail.com>"]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "watchtower-client"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# General
|
|
backoff = { version = "0.4.0", features = ["tokio"] }
|
|
hex = { version = "0.4.3", features = [ "serde" ] }
|
|
home = "0.5.3"
|
|
reqwest = { version = "0.11", features = [ "blocking", "json", "socks" ] }
|
|
log = "0.4.16"
|
|
rusqlite = { version = "0.26.0", features = [ "bundled", "limits" ] }
|
|
serde = "1.0.130"
|
|
serde_json = { version = "1.0", features = [ "preserve_order" ] }
|
|
tonic = { version = "0.11", features = [ "tls", "transport" ] }
|
|
tokio = { version = "1.5", features = [ "rt-multi-thread", "fs" ] }
|
|
|
|
# Bitcoin and Lightning
|
|
bitcoin = "0.32.0"
|
|
cln-plugin = "0.3.0"
|
|
|
|
# Local
|
|
teos-common = { path = "../teos-common" }
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.32.4"
|
|
tempdir = "0.3.7"
|