big-o-test 0.2.13

Enforces a maximum `time` (and, optionally `space`) Algorithm Complexity when testing
# 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 = "big-o-test"
version = "0.2.13"
authors = ["Luiz Silveira <zertyz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Enforces a maximum `time` (and, optionally `space`) Algorithm Complexity when testing"
homepage = "https://github.com/zertyz/big-o"
documentation = "https://docs.rs/big-o-test/"
readme = "README.md"
keywords = [
    "algorithm",
    "analysis",
    "Big-O",
    "notation",
    "performance",
]
categories = [
    "development-tools",
    "development-tools::profiling",
    "development-tools::testing",
]
license = "Unlicense"
repository = "https://github.com/zertyz/big-o"

[package.metadata.docs.rs]
rustdoc-args = [
    "--cfg",
    "test",
    "--document-private-items",
]

[features]
async = ["tokio"]
default = [
    "report_stdout",
    "tolerance_10_percent",
    "async",
]
no_allocator_metrics = []
no_report = []
report_stderr = []
report_stdout = []
tolerance_10_percent = []
tolerance_25_percent = []

[lib]
name = "big_o_test"
path = "src/lib.rs"

[[test]]
name = "big_o_tests"
path = "tests/big_o_tests.rs"

[dependencies.crossbeam]
version = "0.8"

[dependencies.keen-retry]
version = "0.5"

[dependencies.once_cell]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "time",
    "macros",
]
optional = true
default-features = false

[dev-dependencies.ctor]
version = "0.2"

[dev-dependencies.parking_lot]
version = "0.12"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.serial_test]
version = "3"

[dev-dependencies.spin_sleep]
version = "1.1"