[package]
edition = "2021"
rust-version = "1.85"
name = "no_alloc_check"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macro attribute for no_alloc; cfg-gated hybrid marker."
readme = "README.md"
keywords = [
"allocation",
"realtime",
"static-analysis",
]
categories = [
"development-tools",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DarkWanderer/no_alloc"
resolver = "3"
[lib]
name = "no_alloc_check"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "expand"
path = "tests/expand.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.trybuild]
version = "1"