suitecase 0.0.1

The structured test toolkit. A sync Rust crate for named cases, optional suite and per-case hooks, and macros so each case appears in cargo test—without a custom harness or DSL.
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 = "2024"
name = "suitecase"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The structured test toolkit. A sync Rust crate for named cases, optional suite and per-case hooks, and macros so each case appears in cargo test—without a custom harness or DSL."
readme = "README.md"
license = "MIT"

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

[[example]]
name = "sqlx_sqlite"
path = "examples/sqlx_sqlite.rs"

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

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

[dependencies]

[dev-dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio",
    "sqlite",
    "migrate",
]

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]