summaryrefslogtreecommitdiff
path: root/instrumentation/Cargo.toml
blob: 4103410ea40674f63ead39eb97789b6f69135cf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "instrumentation"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.63.0"

[dependencies]
# Cli args parser
clap = { version = "4.0.29", features = ["derive"] }
common = { path = "../common" }
# Bitcoin
btc-wire = { path = "../btc-wire" }
bitcoin = { version = "0.29.2", default-features = false }
# Ethereum
eth-wire = { path = "../eth-wire" }
ethereum-types = { version = "0.14.1", default-features = false }
hex = "0.4.3"
# Wire Gateway
ureq = { version = "2.5.0", features = ["json"] }
# In memory deflate library
libdeflater = "0.11.0"
# Generate temporary files
tempfile = "3.3.0"
# RNG
fastrand = "1.8.0"
# terminal color
owo-colors = "3.5.0"
# Better backtrace
color-backtrace = "0.5.1"
# Send signal to child processes
signal-child = "1.0.5"


[build-dependencies]
clap_mangen = "0.2.5"