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
27 lines
639 B
TOML
27 lines
639 B
TOML
[package]
|
|
name = "teos-common"
|
|
version = "0.2.0"
|
|
authors = ["Sergi Delgado Segura <sergi.delgado.s@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# General
|
|
hex = { version = "0.4.3", features = [ "serde" ] }
|
|
prost = "0.12"
|
|
rusqlite = { version = "0.26.0", features = [ "bundled", "limits" ] }
|
|
serde = "1.0.130"
|
|
serde_json = "1.0"
|
|
tonic = "0.11"
|
|
|
|
# Crypto
|
|
rand = "0.8.4"
|
|
chacha20poly1305 = "0.8.0"
|
|
|
|
# Bitcoin and Lightning
|
|
bitcoin = { version = "0.32.0", features = [ "serde" ] }
|
|
lightning = "0.1.0"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.11"
|