-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 1.03 KB
/
Cargo.toml
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 = "bitcoin-send-tx-p2p"
version = "0.2.0"
authors = ["Andrew Toth"]
license = "MIT"
homepage = "https://github.com/andrewtoth/bitcoin-send-tx-p2p/"
repository = "https://github.com/andrewtoth/bitcoin-send-tx-p2p/"
documentation = "https://docs.rs/bitcoin-send-tx-p2p/"
description = "Send a bitcoin tx through the peer-to-peer protocol via clearnet or tor"
keywords = ["crypto", "bitcoin", "p2p"]
readme = "README.md"
edition = "2021"
[features]
default = []
tor = ["tokio-socks"]
[package.metadata.docs.rs]
features = ["tor"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
tokio = { version = "1", features = [
"net",
"io-util",
"rt-multi-thread",
"time",
] }
bitcoin = { version = "0.30", features = ["rand-std"] }
async-trait = "0.1"
log = "0.4"
tokio-socks = { version = "0.5", optional = true }
thiserror = "1.0.50"
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }
tokio-test = "0.4"
hex = "0.4"
env_logger = "0.10"
bitcoind = { version = "0.33", features = ["25_1"] }
bitcoincore-rpc = "0.17"