-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (40 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
50 lines (40 loc) · 1.12 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "lfqueue"
version = "0.8.1"
edition = "2024"
description = "Fast concurrent lock-free MPMC queues"
license-file = "LICENSE"
repository = "https://github.com/DiscordJim/lfqueue"
[target.'cfg(loom)'.dependencies]
loom = "0.7.2"
[target.'cfg(fuzzing)'.dependencies]
arbitrary = { version = "1.4.1", features = ["derive"] }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)', 'cfg(fuzzing)'] }
[features]
default = ["std"]
std = ["haphazard"]
portable-atomic = ["dep:portable-atomic"]
[dependencies]
crossbeam-utils = { version = "0.8.21", default-features = false }
haphazard = { version = "0.1.8", optional = true }
portable-atomic = { version = "1.11.1", optional = true }
[dev-dependencies]
arbitrary = { version = "1.4.1", features = ["derive"] }
criterion = "0.6.0"
crossbeam-queue = "0.3.12"
lockfree = "0.5.1"
many_cpus_benchmarking = "0.1.18"
rand = "0.9.1"
[[bench]]
name = "syncqueue"
harness = false
required-features = ["std"]
[[bench]]
name = "syncqueue_many_cpus"
harness = false
required-features = ["std"]
[[bench]]
name = "singlesized"
harness = false
required-features = ["std"]