[package]
edition = "2024"
rust-version = "1.95.0"
name = "cano-macros"
version = "0.10.2"
authors = ["Nassor Frazier-Silva <nassor@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the cano workflow engine."
homepage = "https://nassor.github.io/cano/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nassor/cano"
[lib]
name = "cano_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "default_body"
path = "tests/default_body.rs"
[[test]]
name = "derive_from_resources"
path = "tests/derive_from_resources.rs"
[[test]]
name = "derive_resource"
path = "tests/derive_resource.rs"
[[test]]
name = "generic"
path = "tests/generic.rs"
[[test]]
name = "node_impl_inference"
path = "tests/node_impl_inference.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"visit-mut",
]
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]