forked from bodil/smartstring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.1 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "smartstring"
version = "1.0.1"
authors = ["Bodil Stokke <[email protected]>"]
edition = "2021"
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/**"]
rust-version = "1.57"
build = "./build.rs"
[package.metadata.docs.rs]
features = ["arbitrary", "proptest", "serde"]
[badges]
travis-ci = { repository = "bodil/smartstring", branch = "master" }
[[bench]]
name = "smartstring"
harness = false
[features]
default = ["std"]
std = []
test = ["std", "arbitrary", "arbitrary/derive"]
[dependencies]
static_assertions = "1"
serde = { version = "1", optional = true }
arbitrary = { version = "1", optional = true }
proptest = { version = "1", optional = true }
[dev-dependencies]
proptest = "1"
proptest-derive = "0.3"
criterion = "0.3"
rand = "0.8"
serde_test = "1"
[build-dependencies]
version_check = "0.9"
autocfg = "1"