chunked_vec 0.5.0

A chunk-oriented vector collection with fixed-size chunk storage
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "chunked_vec"
version = "0.5.0"
authors = ["XuancongMeng <xuancongmeng@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A chunk-oriented vector collection with fixed-size chunk storage"
readme = "README.md"
keywords = [
    "vector",
    "data-structure",
    "chunk",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/QuarkPixel/ChunkedVec"

[package.metadata.docs.rs]
all-features = true

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

[lib]
name = "chunked_vec"
path = "src/lib.rs"

[[test]]
name = "heap_allocated_reproduction"
path = "tests/heap_allocated_reproduction.rs"

[[test]]
name = "serde"
path = "tests/serde.rs"

[dependencies.likely_stable]
version = "0.1.3"

[dependencies.serde]
version = "1.0.228"
features = ["std"]
optional = true
default-features = false

[dev-dependencies.serde_json]
version = "1.0.105"
features = [
    "alloc",
    "std",
]
default-features = false