forked from fitzgen/inlinable_string
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (21 loc) · 878 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
27
28
[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.11"
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.clippy]
optional = true
version = "0.0.27"
[dependencies.serde]
optional = true
version = "1"
[features]
nightly = ["clippy"]
[dev-dependencies]
serde_test = "1"