[package]
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
name = "inlinable_string"
description = "The `inlinable_string` crate provides the `InlinableString` type -- an owned, grow-able UTF-8 string that stores small strings inline and avoids heap-allocation -- and the `StringExt` trait which abstracts string operations over both `std::string::String` and `InlinableString` (or even your own custom string type)."
version = "0.1.15"
edition = "2018"
license = "Apache-2.0/MIT"
keywords = ["string", "inline", "inlinable"]
readme = "./README.md"
documentation = "http://fitzgen.github.io/inlinable_string/inlinable_string/index.html"
repository = "https://github.com/fitzgen/inlinable_string"
[dependencies]
[dependencies.serde]
optional = true
version = "1"
[features]
nightly = []
no_std = []
[dev-dependencies]
serde_test = "1"