[package]
edition = "2024"
name = "sync-oneshot"
version = "0.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A minimal oneshot channel for synchronous Rust.
"""
documentation = "https://docs.rs/sync-oneshot"
readme = "README.md"
keywords = [
"channel",
"oneshot",
"message",
]
license = "MIT"
repository = "https://github.com/locksmith-rs/sync-oneshot.git"
[lib]
name = "sync_oneshot"
path = "src/lib.rs"
[dependencies]