[dependencies.bumpalo]
optional = true
version = "3.14"
[dependencies.tagged_dispatch_macros]
version = "0.1.2"
[dependencies.typed-arena]
optional = true
version = "2.0"
[dev-dependencies.bumpalo]
version = "3.14"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.static_assertions]
version = "1.1"
[features]
all-allocators = ["allocator-bumpalo", "allocator-typed-arena"]
allocator-bumpalo = ["bumpalo"]
allocator-typed-arena = ["typed-arena"]
default = ["std"]
std = []
[lib]
name = "tagged_dispatch"
path = "src/lib.rs"
[package]
authors = ["Jon Davis <khalen@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "no-std", "memory-management"]
description = "Memory efficient trait dispatch using tagged pointers."
documentation = "https://docs.rs/tagged_dispatch"
edition = "2021"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["dispatch", "polymorphism", "tagged-pointer", "performance"]
license = "MIT OR Apache-2.0"
name = "tagged_dispatch"
readme = "README.md"
repository = "https://github.com/khalen/tagged_dispatch"
version = "0.1.2"
[profile.release]
codegen-units = 1
lto = true