forked from RandyMcMillan/mempool_space
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 1011 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 1011 Bytes
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
[package]
name = "mempool_space"
version = "0.0.1"
edition = "2021"
authors = ["randymcmillan <randy.lee.mcmillan@gmail.com>", "Simon Brummer <simon.brummer@posteo.de>"]
description = "mempool.space api-rust"
license = "MIT"
readme = "README.md"
repository = "https://github.com/bitcoincore-dev/mempool_space.git"
keywords = ["mempool-space", "mempool", "bitcoin", "async"]
categories = ["network-programming"]
[dependencies]
ascii = "1.1.0"
dns-lookup = { version = "1.0.7" }
futures = { version = "0.3.17", optional = true }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls-webpki-roots"] }
tokio = { version = "1.12.0", optional = true, features = ["rt-multi-thread", "sync", "time", "macros"] }
ureq = "2.9.6"
[dev-dependencies]
mockall = { version = "0.10.2" }
[features]
default = ["async"]
async = ["futures", "tokio"]
[workspace]
members = [
"examples/async_usage",
"examples/async_usage_custom_target",
"examples/usage",
]