# 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 = "mulligan" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A flexible retry library for Rust async operations with configurable backoff strategies and jitter." homepage = "https://github.com/theelderbeever/mulligan" documentation = "https://docs.rs/mulligan" readme = "README.md" license = "MIT" repository = "https://github.com/theelderbeever/mulligan" [lib] name = "mulligan" path = "src/lib.rs" [[example]] name = "hello_world" path = "examples/hello_world.rs" required-features = ["tokio"] [dependencies.async-std] version = "1" optional = true [dependencies.rand] version = "0.8" [dependencies.tokio] version = "1" features = [ "time", "rt", ] optional = true [dev-dependencies.tokio] version = "1" features = ["full"] [features] async-std = ["dep:async-std"] default = ["tokio"] tokio = ["dep:tokio"]