-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (34 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
46 lines (34 loc) · 1.02 KB
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
[package]
name = "tinyvec_string"
version = "0.3.2"
authors = ["ThatsNoMoon <git@thatsnomoon.dev>"]
edition = "2018"
description = "tinyvec based string types"
readme = "README.md"
repository = "https://github.com/ThatsNoMoon/tinyvec_string"
license = "MIT OR Apache-2.0"
keywords = ["no_std", "string", "data-structures"]
categories = ["no-std", "data-structures", "text-processing"]
[dependencies]
tinyvec = "1.5"
tinyvec_macros = { version = "0.1", optional = true }
serde = { version = "1", optional = true, default-features = false }
[features]
default = []
alloc = ["tinyvec/alloc", "tinyvec_macros"]
std = ["alloc"]
rustc_1_40 = ["tinyvec/rustc_1_40"]
rustc_1_55 = ["tinyvec/rustc_1_55"]
rustc_1_57 = ["rustc_1_55"]
[dev-dependencies]
serde_json = "1"
[package.metadata.docs.rs]
# Build docs with all features, show what things need a feature enabled
rustdoc-args = ["--cfg","docs_rs"]
all-features = true
[[test]]
name = "tinystring"
required-features = ["alloc"]
[[test]]
name = "arraystring"
required-features = ["alloc"]