box_any 0.2.0

Provides a dynamic box type `BoxAny`, which contains a `Box<T>` value. `BoxAny` is similar to Box<dyn Any> but it doesn't use fat pointer to dynamic dispatch.
Documentation
[[bench]]
harness = false
name = "bench"

[dependencies]

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.4"

[package]
authors = ["Lorenzo Vannucci <lorenzo@vannucci.io>"]
description = """
Provides a dynamic box type `BoxAny`, which contains a `Box<T>` value.
`BoxAny` is similar to Box<dyn Any> but it doesn't use
fat pointer to dynamic dispatch.
"""
documentation = "https://docs.rs/box_any/"
edition = "2021"
keywords = ["downcast", "dispatch", "any", "dynamic", "box"]
license = "MIT"
name = "box_any"
readme = "README.md"
repository = "https://github.com/uccidibuti/box_any"
version = "0.2.0"