[package]
edition = "2021"
name = "dyncollections"
version = "0.1.0"
authors = ["ModernType <antonaw2004@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides a bunch of collections to store trait objects and retrive concrete types from them"
readme = "README.md"
keywords = [
"collections",
"dyn",
"type-erasure",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/ModernType/dyncollections"
[features]
default = ["impl_std"]
impl_std = []
[lib]
name = "dyncollections"
crate-type = ["lib"]
path = "src/lib.rs"
[dependencies]