forked from bitcoindevkit/rust-esplora-client
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
37 lines (34 loc) · 1.35 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
[package]
name = "bp-esplora"
version = "0.11.0-beta.9"
edition = "2018"
authors = ["Alekos Filini <[email protected]>", "Dr Maxim Orlovsky <[email protected]>"]
license = "MIT"
homepage = "https://github.com/BP-WG/bp-esplora-client"
repository = "https://github.com/BP-WG/bp-esplora-client"
documentation = "https://docs.rs/bp-esplora/"
description = "Bitcoin Esplora API client library not using rust-bitcoin. Blocking or async"
keywords = ["bitcoin", "esplora"]
readme = "README.md"
[lib]
name = "esplora"
path = "src/lib.rs"
[dependencies]
amplify = { version = "4.7.0", features = ["serde"] }
sha2 = "0.10.8"
bp-std = { version = "0.11.0-beta.9", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_with = { version = "3.11", features = ["hex"] }
log = "^0.4"
ureq = { version = "2.10.1", features = ["json"], optional = true }
reqwest = { version = "0.12.9", optional = true, default-features = false, features = ["json"] }
[features]
default = ["blocking", "async", "async-https"]
all = ["blocking"]
blocking = ["ureq", "ureq/socks-proxy"]
blocking-wasm = ["ureq"]
async = ["reqwest", "reqwest/socks"]
async-https = ["async", "reqwest/default-tls"]
async-https-native = ["async", "reqwest/native-tls"]
async-https-rustls = ["async", "reqwest/rustls-tls"]
async-https-rustls-manual-roots = ["async", "reqwest/rustls-tls-manual-roots"]