[package]
edition = "2024"
name = "spectacular"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An RSpec-inspired test framework for Rust with stackable before/after hooks"
readme = "README.md"
keywords = [
"testing",
"test-framework",
"rspec",
"hooks",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/brianp/spectacular"
resolver = "2"
[features]
async-std = ["spectacular-macros/async-std"]
tokio = ["spectacular-macros/tokio"]
[lib]
name = "spectacular"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "integration_async_feature"
path = "tests/integration_async_feature.rs"
[dependencies.spectacular-macros]
version = "0.2.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]