[package]
edition = "2018"
name = "swimmer"
version = "0.2.0"
authors = ["caelunshun <caelunshun@gmail.com>"]
description = "Thread-safe object pool type"
readme = "README.md"
keywords = ["pool", "data-structure", "object-pool"]
categories = ["data-structures"]
license = "MIT/Apache-2.0"
repository = "https://github.com/caelunshun/swimmer-rs"
[[bench]]
name = "pool"
harness = false
[dependencies.hashbrown]
version = "0.6.0"
optional = true
[dependencies.smallvec]
version = "0.6.10"
optional = true
[dependencies.thread_local]
version = "0.3.6"
[dev-dependencies.criterion]
version = "0.2.11"
[dev-dependencies.lazy_static]
version = "1.3.0"
[dev-dependencies.lifeguard]
version = "0.6.0"
[dev-dependencies.static_assertions]
version = "0.3.4"
[features]
hashbrown-impls = ["hashbrown"]
smallvec-impls = ["smallvec"]