[package]
edition = "2024"
rust-version = "1.91"
name = "annotate"
version = "1.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Annotation framework for Rust functions and modules"
homepage = "https://github.com/feenkcom/annotate-rs"
documentation = "https://docs.rs/annotate"
readme = "README.md"
keywords = [
"annotations",
"reflection",
"proc-macro",
]
categories = [
"development-tools",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/feenkcom/annotate-rs"
resolver = "2"
[features]
default = [
"std",
"global-environment",
"function-call",
]
function-call = []
global-environment = [
"dep:once_cell",
"std",
]
std = []
[lib]
name = "annotate"
path = "src/lib.rs"
[dependencies.annotate-derive]
version = "1.2.3"
[dependencies.once_cell]
version = "1.21"
optional = true