-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1007 Bytes
/
Copy pathCargo.toml
File metadata and controls
46 lines (39 loc) · 1007 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "fq"
version = "0.1.0"
authors = ["QEDK <hi@qedk.xyz>"]
edition = "2024"
description = "A fast and simple ring-buffer-based single-producer, single-consumer queue with no dependencies. You can use this to write Rust programs with low-latency message passing."
homepage = "https://github.com/QEDK/fq"
repository = "https://github.com/QEDK/fq"
documentation = "https://docs.rs/fq"
readme = "README.md"
license = "MIT OR LGPL-3.0-or-later"
keywords = ["fq", "queue", "messaging", "spsc", "message-queue"]
categories = ["asynchronous", "data-structures", "concurrency"]
build = "build.rs"
exclude = [
".github",
"benches",
"examples"
]
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
[profile.bench]
inherits = "release"
lto = "fat"
codegen-units = 1
[dev-dependencies]
criterion = { version = "0.8" }
[build-dependencies]
rustc_version = "0.4"
[features]
unstable = []
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "latency"
harness = false