Files
bft-crdt-experiment/side-node/Cargo.toml

42 lines
1.2 KiB
TOML
Raw Normal View History

2024-05-29 08:32:40 +01:00
[package]
name = "side-node"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
2024-06-06 19:25:54 +01:00
async-trait = "0.1.52"
bdk = "0.29.0"
bdk_esplora = "0.15.0"
bdk_sqlite = "0.2.0"
2024-06-21 16:34:53 +01:00
bdk_wallet = { version = "1.0.0-alpha.13", features = ["all-keys"] }
bft-json-crdt = { path = "../crates/bft-json-crdt" }
bft-crdt-derive = { path = "../crates/bft-json-crdt/bft-crdt-derive" }
bitcoin = { version = "0.32.2", features = ["rand"] }
2024-06-06 11:49:10 +01:00
clap = { version = "4.5.4", features = ["derive"] }
dirs = "5.0.1"
2024-06-06 19:25:54 +01:00
ezsockets = { version = "*", features = ["client"] }
fastcrypto = "0.1.8"
indexmap = { version = "2.2.6", features = ["serde"] }
# serde_cbor = "0.11.2" # move to this once we need to pack things in CBOR
2024-05-29 18:17:34 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
2024-06-06 13:16:41 +01:00
sha256 = "1.5.0"
2024-06-06 13:54:15 +01:00
tokio = { version = "1.37.0", features = ["full"] }
toml = "0.8.14"
2024-06-06 19:25:54 +01:00
tracing = "0.1.32"
2024-06-18 11:59:17 +01:00
# tracing-subscriber = "0.3.9"
2024-06-06 19:25:54 +01:00
2024-06-13 11:34:41 +01:00
[dev-dependencies]
uuid = { version = "1.8.0", features = ["v4"] }
[features]
default = ["bft", "logging-list", "logging-json"]
logging-list = ["logging-base"]
logging-json = ["logging-base"]
logging-base = []
bft = []