[package]
edition = "2024"
name = "simple-semaphore"
version = "1.0.0"
authors = ["Krypton <root@krypton.ninja>"]
build = false
include = [
"/Cargo.toml",
"/CODE_OF_CONDUCT.md",
"/CONTRIBUTING.md",
"/LICENSE.md",
"/README.md",
"/SECURITY.md",
"/examples/**",
"/src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "🔐 A lightweight implementation of a Semaphore in Rust"
documentation = "https://docs.rs/simple-semaphore"
readme = "README.md"
keywords = [
"algorithm",
"twitter",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT"
repository = "https://github.com/kkrypt0nn/simple-semaphore"
[lib]
name = "simple_semaphore"
path = "src/lib.rs"
[[example]]
name = "main"
path = "examples/main.rs"