-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 916 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 = "orx-linked-list"
version = "3.2.0"
edition = "2021"
authors = ["orxfun <[email protected]>"]
description = "A linked list implementation with unique features and an extended list of constant time methods providing high performance traversals and mutations."
license = "MIT"
repository = "https://github.com/orxfun/orx-linked-list/"
keywords = ["linked", "list", "doubly", "singly", "pinned"]
categories = ["data-structures", "rust-patterns", "no-std"]
[dependencies]
orx-pseudo-default = { version = "1.4", default-features = false }
orx-pinned-vec = "3.11"
orx-split-vec = "3.11"
orx-fixed-vec = "3.11"
orx-selfref-col = "2.2"
[dev-dependencies]
clap = { version = "4.5.17", features = ["derive"] }
criterion = "0.5"
rand = "0.8.5"
rand_chacha = "0.3.1"
test-case = "3.3.1"
[features]
default = ["validation"]
validation = []
[[bench]]
name = "doubly_shuffling_around"
harness = false