# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "bdk_esplora" version = "0.19.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Fetch data from esplora in the form that accepts" homepage = "https://bitcoindevkit.org" documentation = "https://docs.rs/bdk_esplora" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/bitcoindevkit/bdk" [lib] name = "bdk_esplora" path = "src/lib.rs" [[test]] name = "async_ext" path = "tests/async_ext.rs" required-features = ["async"] [[test]] name = "blocking_ext" path = "tests/blocking_ext.rs" required-features = ["blocking"] [dependencies.async-trait] version = "0.1.66" optional = true [dependencies.bdk_core] version = "0.3.0" default-features = false [dependencies.esplora-client] version = "0.10.0" default-features = false [dependencies.futures] version = "0.3.26" optional = true [dependencies.miniscript] version = "12.0.0" optional = true default-features = false [dev-dependencies.tokio] version = "1" features = [ "rt", "rt-multi-thread", "macros", ] [features] async = [ "async-trait", "futures", "esplora-client/async", ] async-https = [ "async", "esplora-client/async-https", ] async-https-native = [ "async", "esplora-client/async-https-native", ] async-https-rustls = [ "async", "esplora-client/async-https-rustls", ] blocking = ["esplora-client/blocking"] blocking-https = [ "blocking", "esplora-client/blocking-https", ] blocking-https-native = [ "blocking", "esplora-client/blocking-https-native", ] blocking-https-rustls = [ "blocking", "esplora-client/blocking-https-rustls", ] default = [ "std", "async-https", "blocking-https", ] std = ["miniscript?/std"] [lints.clippy] print_stderr = "deny" print_stdout = "deny"