inlinable_string 0.1.5

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).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[dependencies.clippy]
optional = true
version = "0.0.27"

[features]
nightly = ["clippy"]

[package]
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
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)."
documentation = "http://fitzgen.github.io/inlinable_string/inlinable_string/index.html"
keywords = ["string", "inline", "inlinable"]
license = "Apache-2.0/MIT"
name = "inlinable_string"
readme = "./README.md"
repository = "https://github.com/fitzgen/inlinable_string"
version = "0.1.5"