summaryrefslogtreecommitdiff
path: root/instrumentation/Cargo.toml
blob: 66bc4a4f275f7a11262cff82d2dce4c1fb32e4b4 (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
37
38
39
40
41
[package]
name = "instrumentation"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.72.1"

[dependencies]
# Cli args parser
clap = { version = "4.4.6", features = ["derive"] }
clap_lex = "0.7.0"
common = { path = "../common" }
# Bitcoin
btc-wire = { path = "../btc-wire" }
bitcoin = { version = "0.31.0", default-features = false, features = ["std"] }
# 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 = "1.19.0"
# Generate temporary files
tempfile = "3.3.0"
# RNG
fastrand = "2.0.1"
# terminal color
owo-colors = "4.0.0"
# Better backtrace
color-backtrace = "0.6.0"
# Send signal to child processes
signal-child = "1.0.5"
# Edit toml files
rust-ini = "0.21.0"
# Progress reporting
indicatif = "0.17.7"
thread-local-panic-hook = "0.1.0"

[build-dependencies]
clap_mangen = "0.2.14"