-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 882 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
29
30
31
32
[package]
name = "small-fixed-array"
description = "A crate providing fixed length immutable collections with a low memory footprint."
repository = "https://github.com/GnomedDev/small-fixed-array"
keywords = ["array", "string", "collection", "low-memory"]
categories = ["data-structures"]
rust-version = "1.70"
version = "0.4.7"
edition = "2021"
license = "MIT"
[dependencies]
serde = { version = "1.0.193", optional = true }
to-arraystring = { version = "0.2.1", optional = true }
typesize = { version = "0.1.3", optional = true, default-features = false }
[dev-dependencies]
serde_json = "1"
[features]
default = ["std"]
# Add new features to the jobs in .github/workflows/ci.yml.
to-arraystring = ["dep:to-arraystring"]
typesize = ["dep:typesize"]
serde = ["dep:serde"]
nightly = []
std = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]