forked from orxfun/orx-split-vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 949 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 949 Bytes
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
[package]
name = "orx-split-vec"
version = "3.21.0"
edition = "2024"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
description = "An efficient dynamic capacity vector with pinned element guarantees."
license = "MIT OR Apache-2.0"
repository = "https://github.com/orxfun/orx-split-vec/"
keywords = ["vec", "array", "split", "fragments", "pinned"]
categories = ["data-structures", "rust-patterns", "no-std"]
[dependencies]
orx-iterable = { version = "1.3.0", default-features = false }
orx-pseudo-default = { version = "2.1.0", default-features = false }
orx-pinned-vec = { version = "3.20.0", default-features = false }
orx-concurrent-iter = { version = "3.1.0", default-features = false }
[[bench]]
name = "serial_access"
harness = false
[dev-dependencies]
criterion = "0.7.0"
rand = { version = "0.9.2", default-features = false }
rand_chacha = { version = "0.9", default-features = false }
test-case = "3.3.1"
# orx-concurrent-bag = "3.1.0"