# 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 = "keen-retry" version = "0.5.0" authors = ["Luiz Silveira "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A simple -- yet powerful -- zero-cost-abstractions & zero-copy lib for error handling & recovery" homepage = "https://github.com/zertyz/keen-retry" documentation = "https://docs.rs/keen-retry/" readme = "README.md" keywords = [ "functional", "zero-copy", "zero-cost", "async", "performance", ] categories = [ "asynchronous", "network-programming", "rust-patterns", ] license = "Unlicense" repository = "https://github.com/zertyz/keen-retry" [lib] name = "keen_retry" path = "src/lib.rs" [[test]] name = "external_lib" path = "tests/external_lib.rs" [[test]] name = "use_cases" path = "tests/use_cases.rs" [[bench]] name = "zero_cost_abstractions" path = "benches/zero_cost_abstractions.rs" harness = false [dependencies.futures] version = "0.3" optional = true [dependencies.log] version = "0.4" [dependencies.rand] version = "0.8" [dependencies.tokio] version = "1" features = [ "rt", "time", "macros", ] optional = true [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.ctor] version = "0.2" [dev-dependencies.simple_logger] version = "4.0" [dev-dependencies.thiserror] version = "1.0" [features] async = [ "tokio", "futures", ] default = ["async"] no-async = []