[package]
edition = "2024"
rust-version = "1.85"
name = "vanilla-test"
version = "2.1.0"
authors = ["Roshi _ _"]
build = false
include = [
"/src/**",
"/benches/**",
"/rust/browser/browser.js",
"/rust/browser/runner.html",
"/RUST.md",
"/licence",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal, dependency-free testing for native Rust and browser WebAssembly"
readme = "RUST.md"
keywords = [
"testing",
"test",
"minimal",
"zero-dependency",
"wasm",
]
categories = ["development-tools::testing"]
license = "MIT"
repository = "https://github.com/RIAEvangelist/vanilla-test"
[lib]
name = "vanilla_test"
path = "src/lib.rs"
[[bin]]
name = "cargo-vanilla-test"
path = "src/bin/cargo-vanilla-test.rs"
[[bench]]
name = "lifecycle"
path = "benches/lifecycle.rs"
harness = false