dev-tools 0.9.0

Modular verification toolkit for AI-assisted Rust development. Umbrella crate with feature gates over the dev-* suite.
Documentation
# 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"
rust-version = "1.85"
name = "dev-tools"
version = "0.9.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Modular verification toolkit for AI-assisted Rust development. Umbrella crate with feature gates over the dev-* suite."
homepage = "https://github.com/jamesgober/dev-tools"
documentation = "https://docs.rs/dev-tools"
readme = "README.md"
keywords = [
    "testing",
    "verification",
    "benchmark",
    "chaos",
    "ai-tools",
]
categories = [
    "development-tools",
    "development-tools::testing",
    "development-tools::profiling",
]
license = "Apache-2.0"
repository = "https://github.com/jamesgober/dev-tools"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
async = ["dep:dev-async"]
bench = ["dep:dev-bench"]
chaos = ["dep:dev-chaos"]
default = [
    "fixtures",
    "bench",
]
fixtures = ["dep:dev-fixtures"]
full = [
    "fixtures",
    "bench",
    "async",
    "stress",
    "chaos",
]
stress = ["dep:dev-stress"]

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

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

[dependencies.dev-async]
version = "0.9"
optional = true

[dependencies.dev-bench]
version = "0.9"
optional = true

[dependencies.dev-chaos]
version = "0.9"
optional = true

[dependencies.dev-fixtures]
version = "0.9"
optional = true

[dependencies.dev-report]
version = "0.9"

[dependencies.dev-stress]
version = "0.9"
optional = true

[dev-dependencies]

[profile.release]
opt-level = 3
lto = "thin"