assert-not 0.1.0

A simple, no_std compatible Rust macro that works like the inverse of assert! - passes when condition is false
Documentation
[package]
name = "assert-not"
version = "0.1.0"
edition = "2021"
rust-version = "1.56.0"  # Minimum version required for Rust 2021 edition
authors = ["kazztac <42577573+kazztac@users.noreply.github.com>"]
license = "MIT OR Apache-2.0"
description = "A simple, no_std compatible Rust macro that works like the inverse of assert! - passes when condition is false"
repository = "https://github.com/kazztac/assert-not"
documentation = "https://docs.rs/assert-not"
readme = "README.md"
keywords = ["assert", "testing", "macro", "debugging", "no-std"]
categories = ["development-tools::testing", "development-tools::debugging", "no-std"]
exclude = [
    "target/",
    ".git/",
    ".github/",
    "*.orig",
    "Cargo.lock",
]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]

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