fq 0.1.0

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.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "fq"
version = "0.1.0"
authors = ["QEDK <hi@qedk.xyz>"]
build = "build.rs"
exclude = [
    ".github",
    "benches",
    "examples",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"
documentation = "https://docs.rs/fq"
readme = "README.md"
keywords = [
    "fq",
    "queue",
    "messaging",
    "spsc",
    "message-queue",
]
categories = [
    "asynchronous",
    "data-structures",
    "concurrency",
]
license = "MIT OR LGPL-3.0-or-later"
repository = "https://github.com/QEDK/fq"

[features]
unstable = []

[lib]
name = "fq"
path = "src/lib.rs"

[dev-dependencies.criterion]
version = "0.8"

[build-dependencies.rustc_version]
version = "0.4"

[profile.bench]
lto = "fat"
codegen-units = 1
inherits = "release"

[profile.maxperf]
lto = "fat"
codegen-units = 1
inherits = "release"