-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
26 lines (20 loc) · 841 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
authors = ["Nick Fitzgerald <[email protected]>"]
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"