implement

This commit is contained in:
Aleksandr 2025-05-02 20:37:44 +03:00
parent d58b347140
commit 050eedc7c8
7 changed files with 341 additions and 0 deletions

22
Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "notifies"
version = "0.1.0"
edition = "2021"
authors = ["nerodono <nerodono0@gmail.com>"]
description = "various efficient async notifies"
homepage = "https://git.viende.su/VienDesu/notifies"
repository = "https://git.viende.su/VienDesu/notifies"
license = "MIT"
keywords = ["async", "atomic", "waker"]
[dependencies]
[dev-dependencies]
tokio = { version = "1.44.2", features = [
"rt",
"rt-multi-thread",
"sync",
"macros",
"time",
] }