linear_collections 0.3.0

Map and Set types backed by linear data structures.
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 = "linear_collections"
version = "0.3.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Map and Set types backed by linear data structures."
readme = "README.md"
keywords = [
    "vecmap",
    "arraymap",
    "linearmap",
    "vecset",
    "arrayset",
]
categories = ["data-structures"]
license = "MIT"
repository = "https://github.com/Jeremiah-Griffin/linear_collections"

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

[dependencies.linear_collections_macros]
version = "0.1.0"
optional = true

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

[dependencies.serde_test]
version = "1.0.176"
optional = true

[dev-dependencies.trybuild]
version = "1.0.96"

[features]
default = []
macros = ["dep:linear_collections_macros"]
serde = [
    "dep:serde",
    "dep:serde_test",
]