forked from bodil/smartstring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 933 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 933 Bytes
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
29
30
31
32
33
34
35
36
[package]
name = "smartstring"
version = "0.2.2"
authors = ["Bodil Stokke <bodil@bodil.org>"]
edition = "2018"
license = "MPL-2.0+"
description = "Compact inlined strings"
repository = "https://github.com/bodil/smartstring"
documentation = "http://docs.rs/smartstring"
readme = "./README.md"
categories = ["data-structures"]
keywords = ["cache-local", "cpu-cache", "small-string", "sso", "inline-string"]
exclude = ["release.toml", "proptest-regressions/**"]
[package.metadata.docs.rs]
features = ["arbitrary", "proptest", "serde"]
[[bench]]
name = "smartstring"
harness = false
[features]
test = ["arbitrary", "arbitrary/derive"]
[dependencies]
static_assertions = "1.1.0"
serde = { version = "1", optional = true }
arbitrary = { version = "0.4", optional = true }
proptest = { version = "0.10", optional = true }
[dev-dependencies]
proptest = "0.10"
proptest-derive = "0.2"
criterion = "0.3.2"
rand = "0.7.3"
serde_test = "1"