# 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 = "retry-backoff" version = "0.1.0" authors = ["vkill "] description = "Retry Backoff" homepage = "https://github.com/bk-rs/retry-rs" documentation = "https://docs.rs/retry-backoff" readme = "README.md" keywords = [] categories = [] license = "Apache-2.0 OR MIT" repository = "https://github.com/bk-rs/retry-rs" [package.metadata.cargo-all-features] skip_feature_sets = [["impl_exponential_backoff"], ["impl_backoff_rs"]] skip_optional_dependencies = true [package.metadata.docs.rs] all-features = true [dependencies.backoff-rs] version = "0.1" optional = true default-features = false [dependencies.exponential-backoff] version = "1.1" optional = true default-features = false [features] all_backoffs = ["impl_exponential_backoff", "impl_backoff_rs"] alloc = [] default = ["std", "all_backoffs"] impl_backoff_rs = ["backoff-rs", "std"] impl_exponential_backoff = ["exponential-backoff", "std"] std = ["alloc"]