[package]
edition = "2024"
name = "rust_identified_vec"
version = "0.1.2"
authors = ["Codefonsi <info@codefonsi.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
"book/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ordered collection with O(1) id lookup — Rust counterpart to UDF IdentifiedArray."
homepage = "https://github.com/codefonsi/rust-key-paths/tree/main/rust_identified_vec"
documentation = "https://docs.rs/rust_identified_vec"
readme = "README.md"
keywords = [
"identified",
"collection",
"tca",
"vector",
"index",
]
categories = ["data-structures"]
license = "MPL-2.0"
repository = "https://github.com/codefonsi/rust-key-paths"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "rust_identified_vec"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
[dev-dependencies.serde_json]
version = "1"