[package]
edition = "2018"
name = "retry_fn"
version = "0.2.0"
authors = ["Evan Cameron <cameron.evan@gmail.com>"]
description = "A simple retry function with versions for blocking or non-blocking, tokio or async-std\n"
readme = "README.md"
keywords = ["retry", "tokio", "async"]
categories = ["algorithms", "asynchronous"]
license = "MIT"
repository = "https://github.com/leshow/retry"
[dependencies.async-std]
version = "1.9.0"
optional = true
[dependencies.tokio]
version = "1.1"
features = ["time"]
optional = true
[dev-dependencies.tokio]
version = "1.1"
features = ["full"]
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.version-sync]
version = "0.9"
[features]
async-runtime = ["async-std"]
default = []
tokio-runtime = ["tokio"]
[badges.github-actions]
repository = "leshow/retry_fn"
workflow = "actions"