inlinable_string 0.1.11

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
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "clippy"
version = "0.0.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4df9c37e45aa95aaaab4a56c1016192df0589329db13f7a66978c6ee1c15b012"
dependencies = [
 "unicode-normalization",
]

[[package]]
name = "inlinable_string"
version = "0.1.11"
dependencies = [
 "clippy",
 "serde",
 "serde_test",
]

[[package]]
name = "serde"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"

[[package]]
name = "serde_test"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33f96dff8c3744387b53404ea33e834073b0791dcc1ea9c85b805745f9324704"
dependencies = [
 "serde",
]

[[package]]
name = "smallvec"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"

[[package]]
name = "unicode-normalization"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
dependencies = [
 "smallvec",
]