identified_vec 0.1.6

Like HashSet but retaining INSERTION order and without `Hash` requirement on the Element type.
Documentation
[package]
name = "identified_vec"
version = "0.1.6"
edition = "2021"
authors = ["Alexander Cyon <alex.cyon@gmail.com>"]
description = "Like HashSet but retaining INSERTION order and without `Hash` requirement on the Element type."
license = "MIT"
readme = "README.md"
repository = "https://github.com/Sajjon/identified_vec"
keywords = ["identifiable", "vec", "orderset", "set", "hashset"]
categories = ["data-structures"]

[features]
default = ["id_prim"]
serde = ["dep:serde"]
id_prim = []

[dependencies]
serde = { version = "1.0.193", optional = true }
thiserror = "1.0.50"

[dev-dependencies]
identified_vec = { path = ".", features = ["id_prim", "serde"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"