ph-eventing 0.1.2

Stack-allocated ring buffers for no-std embedded targets
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"
rust-version = "1.92.0"
name = "ph-eventing"
version = "0.1.2"
authors = ["Steven Giacomelli <steve@giacomelli.ca>"]
build = false
exclude = [
    ".cargo/*",
    ".github/*",
    ".idea/*",
    "Cargo.toml.orig",
    "CHANGELOG.md",
    "CLAUDE.md",
    "CODE_OF_CONDUCT.md",
    "CONTRIBUTING.md",
    "LICENSE",
    "README.md",
    "SECURITY.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stack-allocated ring buffers for no-std embedded targets"
readme = "README.md"
keywords = [
    "embedded",
    "no-std",
    "lock-free",
    "spsc",
    "ring-buffer",
]
categories = [
    "embedded",
    "no-std",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/photon-circus/ph-eventing"

[features]
default = []
portable-atomic = ["dep:portable-atomic"]
portable-atomic-critical-section = [
    "portable-atomic",
    "portable-atomic/critical-section",
]
portable-atomic-unsafe-assume-single-core = [
    "portable-atomic",
    "portable-atomic/unsafe-assume-single-core",
]

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

[dependencies.portable-atomic]
version = "1.13"
features = ["require-cas"]
optional = true
default-features = false