-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (26 loc) · 839 Bytes
/
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
[package]
name = "bitcoin-rest"
version = "0.1.1"
authors = ["Masahiko Hyuga <[email protected]>"]
license = "MIT"
description = "Bitcoin Core REST API client and library for Rust"
repository = "https://github.com/visvirial/bitcoin-rest"
categories = ["api-bindings"]
keywords = ["bitcoin", "cryptocurrency", "rest"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = [ "softforks" ]
softforks = []
[dependencies]
bytes = "1.0"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
bitcoin = "0.26"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
criterion = { version = "0.3", features = [] }
[[bench]]
name = "block"
path = "src/benches/block.rs"
harness = false