-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
39 lines (34 loc) · 1.05 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
[package]
name = "arcstr"
version = "1.2.0"
rust-version = "1.57.0"
authors = ["Thom Chiovoloni <[email protected]>"]
edition = "2021"
description = "A better reference-counted string type, with zero-cost (allocation-free) support for string literals, and reference counted substrings."
license = "Apache-2.0 OR MIT OR Zlib"
readme = "README.md"
keywords = ["arc", "refcount", "arc_str", "rc_str", "string"]
categories = [
"concurrency",
"memory-management",
"data-structures",
"no-std",
"rust-patterns",
]
repository = "https://github.com/thomcc/arcstr"
documentation = "https://docs.rs/arcstr"
homepage = "https://github.com/thomcc/arcstr"
include = ["src/**/*", "LICENSE-*", "README.md"]
[features]
std = []
default = ["substr"]
substr = []
substr-usize-indices = ["substr"]
[dependencies]
serde = { version = "1", default-features = false, optional = true }
[dev-dependencies]
serde_test = { version = "1", default-features = false }
[target.'cfg(loom)'.dev-dependencies]
loom = "0.7.1"
[package.metadata.docs.rs]
features = ["std", "substr"]