2020-07-14 16:21:01 -07:00
[ package ]
name = "tower-fallback"
2024-10-30 07:41:41 -07:00
version = "0.2.41-beta.18"
2020-07-14 16:21:01 -07:00
authors = [ "Zcash Foundation <zebra@zfnd.org>" ]
2023-06-13 01:46:01 -07:00
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors."
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/zebra"
Enforce Rust edition 2021 (#3332)
* Rust edition 2021: zebra-network, cargo fix --edition and clippy --fix
* Rust edition 2021: zebra-chain, cargo fix --edition
* Rust edition 2021: tower-batch, cargo fix --edition
* Rust edition 2021: tower-fallback, cargo fix --edition
* Rust edition 2021: zebra-client, cargo fix --edition
* Rust edition 2021: zebra-consensus, cargo fix --edition
* Rust edition 2021: zebra-rpc, cargo fix --edition
* Rust edition 2021: zebra-state, cargo fix --edition
* Rust edition 2021: zebra-state, cargo fix --edition
* Rust edition 2021: zebra-test, cargo fix --edition
* Rust edition 2021: zebra-utils, cargo fix --edition
* Rust edition 2021: zebrad, cargo fix --edition
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-01-14 04:10:18 -08:00
edition = "2021"
2020-07-14 16:21:01 -07:00
2023-06-13 01:46:01 -07:00
# TODO: decide if we want to use the Zebra readme and home page
#readme = "../README.md"
#homepage = "https://zfnd.org/zebra/"
# crates.io is limited to 5 keywords and categories
keywords = [ "tower" , "batch" ]
# Must be one of <https://crates.io/category_slugs>
categories = [ "algorithms" , "asynchronous" ]
2020-07-14 16:21:01 -07:00
[ dependencies ]
2024-10-25 10:33:11 -07:00
pin-project = "1.1.6"
2022-06-21 10:12:19 -07:00
tower = "0.4.13"
2023-04-02 16:28:02 -07:00
futures-core = "0.3.28"
2023-10-16 13:13:38 -07:00
tracing = "0.1.39"
2020-07-14 16:21:01 -07:00
[ dev-dependencies ]
2024-10-25 10:33:11 -07:00
tokio = { version = "1.41.0" , features = [ "full" , "tracing" , "test-util" ] }
2022-06-14 23:43:20 -07:00
2024-10-30 07:41:41 -07:00
zebra-test = { path = "../zebra-test/" , version = "1.0.0-beta.42" }