str_stack 0.1.1

A string allocator for allocating many write-once strings. This library is primarily useful for parsing where you need to repeatedly build many strings, use them, and then throw them away. Instead of allocating many independent strings, this library will put them all in the same buffer.
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 = "2015"
name = "str_stack"
version = "0.1.1"
authors = ["Steven Allen <steven@stebalien.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A string allocator for allocating many write-once strings.

This library is primarily useful for parsing where you need to repeatedly build
many strings, use them, and then throw them away. Instead of allocating many independent strings, this library will put them all in the same buffer.
"""
documentation = "https://docs.rs/str_stack/latest/str_stack/"
readme = "README.md"
keywords = [
    "string",
    "dst",
    "stack",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/Stebalien/str_stack"

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

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