├── .clippy.toml ├── .github └── workflows │ ├── code_coverage.yml │ └── cont_integration.yml ├── .gitignore ├── .rustfmt.toml ├── Cargo.toml ├── LICENSE ├── README.md ├── justfile └── src ├── api.rs ├── async.rs ├── blocking.rs └── lib.rs /.clippy.toml: -------------------------------------------------------------------------------- 1 | msrv="1.63.0" 2 | -------------------------------------------------------------------------------- /.github/workflows/code_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/.github/workflows/code_coverage.yml -------------------------------------------------------------------------------- /.github/workflows/cont_integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/.github/workflows/cont_integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/README.md -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/justfile -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/src/async.rs -------------------------------------------------------------------------------- /src/blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/src/blocking.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcoindevkit/rust-esplora-client/HEAD/src/lib.rs --------------------------------------------------------------------------------