pop-trait 0.2.1

Pop trait for collectons.
Documentation
[package]
name = "pop-trait"
version = "0.2.1"
authors = ["Clar Charr <clar@charr.xyz>"]
repository = "https://github.com/clarcharr/pop-trait"
documentation = "https://clarcharr.github.io/pop-trait/pop_trait"
description = "Pop trait for collectons."
readme = "README.md"
license-file = "LICENSE"
exclude = [".gitignore"]

[dependencies]
len-trait = { version = "0.2", default-features = false }
bit-vec = { version = "0", optional = true }
blist = { version = "0", optional = true }
interval-heap = { version = "0", optional = true }
linked-hash-map = { version = "0", optional = true }

[dev-dependencies]
clippy = "^0.0"

[features]
default = ["collections", "contain-rs"]
contain-rs = [
    "bit-vec",
    "blist",
    "interval-heap",
    "linked-hash-map",
    "len-trait/contain-rs",
]
no-std = ["len-trait/no-std"]
collections = ["len-trait/collections"]