[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"