[package]
edition = "2021"
name = "waitforit"
version = "0.1.0"
authors = ["Adam Shirey <adam@shirey.ch>"]
description = "A library to aid in synchronously waiting for some condition to be met."
homepage = "https://github.com/aeshirey/waitforit/"
readme = "README.md"
keywords = [
"delay",
"wait",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aeshirey/waitforit/"
[dependencies.ureq]
version = "1.5.1"
optional = true
[dependencies.url]
version = "2.2.0"
optional = true
[features]
default = ["http"]
http = [
"ureq",
"url",
]