summaryrefslogtreecommitdiff
path: root/btc-wire/Cargo.toml
blob: 7be17c0608792cea376dad371865584451e24ebd (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
42
[package]
name = "btc-wire"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.63.0"

[features]
# Enable random failures
fail = []

[dependencies]
# Typed bitcoin rpc types
bitcoin = { version = "0.29.2", features = [
    "std",
    "serde",
], default-features = false }
# Cli args parser
clap = { version = "4.0.29", features = ["derive"] }
# Bech32 encoding and decoding
bech32 = "0.9.1"
# Serialization library
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
serde_repr = "0.1.9"
# Error macros
thiserror = "1.0.37"
base64 = "0.20.0"
# Common lib
common = { path = "../common" }
# Ini parser
rust-ini = "0.18.0"
# Hexadecimal encoding
hex = "0.4.3"

[dev-dependencies]
# statistics-driven micro-benchmarks
criterion = "0.4.0"

[[bench]]
name = "metadata"
harness = false