[package]
edition = "2024"
name = "infiltrait"
version = "0.1.0"
authors = ["Alden Moreton"]
build = false
exclude = [
"target/",
".git/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A procedural macro that automatically generates trait definitions from implementation blocks"
homepage = "https://github.com/aldenmoreton/infiltrait"
readme = "README.md"
keywords = [
"proc-macro",
"trait",
"codegen",
"macro",
"derive",
]
categories = ["rust-patterns"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aldenmoreton/infiltrait"
[lib]
name = "infiltrait"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0.101"
[dependencies.quote]
version = "1.0.40"
[dependencies.syn]
version = "2.0.106"
features = ["full"]