-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
36 lines (30 loc) · 864 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
33
34
35
36
[package]
name = "parallel_vec"
version = "0.2.4"
edition = "2021"
authors = ["Hourai Teahouse Developers <[email protected]>"]
description = "A generic contiguous collection of heterogenous values."
homepage = "https://github.com/HouraiTeahouse/parallel_vec"
repository = "https://github.com/HouraiTeahouse/parallel_vec"
readme = "README.md"
keywords = ["ecs", "columnar", "struct-of-arrays", "vec"]
categories = ["data-structures", "no-std"]
license = "MIT OR Apache-2.0"
[features]
default = ["std"]
std = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
serde = { version = "1.0", optional = true, default-features = false, features = ["alloc"]}
[dev-dependencies]
serde_test = "1.0"
criterion = "0.3"
rand = "0.8"
[[bench]]
name = "iter"
harness = false
[[bench]]
name = "get"
harness = false