[package]
edition = "2021"
name = "tagged_dispatch_macros"
version = "0.3.0"
authors = ["Jon Davis <khalen@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for memory-efficient trait dispatch using tagged pointers"
documentation = "https://docs.rs/tagged_dispatch_macros"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/khalen/tagged_dispatch"
[features]
allocator-bumpalo = []
allocator-typed-arena = []
default = []
[lib]
name = "tagged_dispatch_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.heck]
version = "0.4"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
]