-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (23 loc) · 810 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
[package]
name = "orx-split-vec"
version = "3.11.0"
edition = "2021"
authors = ["orxfun <[email protected]>"]
description = "An efficient dynamic capacity vector with pinned element guarantees."
license = "MIT"
repository = "https://github.com/orxfun/orx-split-vec/"
keywords = ["vec", "array", "split", "fragments", "pinned"]
categories = ["data-structures", "rust-patterns", "no-std"]
[dependencies]
orx-pseudo-default = { version = "1.4", default-features = false }
orx-pinned-vec = "3.11"
[[bench]]
name = "serial_access"
harness = false
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
rand = { version = "0.8", default-features = false }
rand_chacha = { version = "0.3", default-features = false }
test-case = "3.3.1"
wasm-bindgen = "0.2"
wasm-bindgen-test = "0.3"