lite-strtab 0.2.0

Crate for storing a lot of strings in a single buffer to save memory.
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 = "lite-strtab"
version = "0.2.0"
build = false
include = [
    "src/**/*",
    "README.MD",
    "benches/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Crate for storing a lot of strings in a single buffer to save memory."
readme = "README.MD"
license = "MIT"
repository = "https://github.com/Sewer56/lite-strtab"

[features]
default = ["std"]
memory-report = [
    "std",
    "dep:zstd",
]
nightly = []
std = []

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

[[bin]]
name = "memory_report"
path = "src/bin/memory_report.rs"
required-features = ["memory-report"]

[[bench]]
name = "my_benchmark"
path = "benches/my_benchmark/main.rs"
harness = false

[dependencies.allocator-api2]
version = "0.4.0"
features = ["alloc"]
default-features = false

[dependencies.thiserror]
version = "2.0"
default-features = false

[dependencies.zstd]
version = "0.13"
optional = true

[dev-dependencies.ahash]
version = "0.8"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.proptest]
version = "1.9.0"

[dev-dependencies.zstd]
version = "0.13"