compact-waitgroup 0.2.0

A compact asynchronous WaitGroup synchronization primitive.
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"
name = "compact-waitgroup"
version = "0.2.0"
build = false
exclude = [
    "release-plz.toml",
    ".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compact asynchronous WaitGroup synchronization primitive."
homepage = "https://github.com/ChieloNewctle/compact-waitgroup"
documentation = "https://docs.rs/compact-waitgroup"
readme = "README.md"
keywords = [
    "sync",
    "async",
    "waitgroup",
    "wake",
    "notify",
]
categories = [
    "concurrency",
    "asynchronous",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ChieloNewctle/compact-waitgroup"

[features]
compact-mono = []
futures-core = ["dep:futures-core"]
portable-atomic = ["dep:portable-atomic"]

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

[dependencies.derive_more]
version = "2.1.1"
features = [
    "constructor",
    "deref",
    "into",
]
default-features = false

[dependencies.futures-core]
version = "0.3.32"
optional = true
default-features = false

[dependencies.pin-project-lite]
version = "0.2.16"
default-features = false

[dependencies.portable-atomic]
version = "1.13.1"
optional = true
default-features = false

[dev-dependencies.futures-executor]
version = "0.3.32"

[dev-dependencies.futures-test]
version = "0.3.32"

[dev-dependencies.static_assertions]
version = "1.1.0"

[target."cfg(loom)".dependencies.loom]
version = "0.7.2"
features = ["futures"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
    "cfg(loom)",
    "cfg(tsan)",
]