[package]
edition = "2024"
rust-version = "1.92.0"
name = "ph-eventing"
version = "0.1.0"
authors = ["Steven Giacomelli <steve@giacomelli.ca>"]
build = false
exclude = [
"CLAUDE.md",
".cargo/*",
".github/*",
".idea/*",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lock-free SPSC event ring for high-throughput telemetry in embedded systems"
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"
[lib]
name = "ph_eventing"
path = "src/lib.rs"
[dependencies]