-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 735 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 735 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
[package]
name = "double_linked_list"
version = "0.1.2"
edition = "2021"
authors = ["Moussa ndour <touskar@github.com>"]
description = "High-performance doubly-linked list with smart pointer support and memory pool optimization"
license = "MIT"
repository = "https://github.com/touskar/double_linked_list"
homepage = "https://github.com/touskar/double_linked_list"
documentation = "https://docs.rs/double_linked_list"
readme = "README.md"
keywords = ["linked-list", "data-structure", "doubly-linked-list", "performance"]
categories = ["data-structures"]
[dependencies]
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"
[[bench]]
name = "bench"
harness = false
[profile.bench]
debug = true