-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 862 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
[package]
name = "lariv"
description = "Linked Atomic Random Insert Vector: a thread-safe, self-memory-managed vector with no guaranteed sequential insert."
license = "MIT"
authors = ["Guillem L. Jara <[email protected]>"]
version = "0.3.2"
edition = "2021"
homepage = "https://github.com/Alonely0/Lariv"
repository = "https://github.com/Alonely0/Lariv"
readme = "./README.md"
keywords = ["vector", "atomic", "ring", "buffer", "thread-safe"]
categories = ["concurrency", "data-structures", "database-implementations", "memory-management", "rust-patterns"]
exclude = [".github/workflows/"]
[dependencies]
[dev-dependencies]
dashmap = "5.4.0"
criterion = { version = "0.5.1", features = ["html_reports"] }
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
[[bench]]
name = "lariv"
harness = false
path = "./benchmarks/bench.rs"