[package]
edition = "2024"
name = "join_me_maybe"
version = "0.4.2"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "an async `join!` macro with `select!`-like features"
documentation = "https://docs.rs/join_me_maybe"
readme = "README.md"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/oconnor663/join_me_maybe"
[lib]
name = "join_me_maybe"
path = "src/lib.rs"
[[example]]
name = "bodies"
path = "examples/bodies.rs"
[[example]]
name = "finally"
path = "examples/finally.rs"
[[example]]
name = "short"
path = "examples/short.rs"
[[test]]
name = "no_std"
path = "tests/no_std.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
name = "ui"
path = "tests/ui.rs"
[dependencies.atomic_refcell]
version = "0.1.13"
[dependencies.futures]
version = "0.3.31"
features = ["async-await"]
default-features = false
[dependencies.join_me_maybe_impl]
version = "0.4"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tokio]
version = "1.48.0"
features = ["full"]
[dev-dependencies.tokio-stream]
version = "0.1.17"
[dev-dependencies.trybuild]
version = "1.0.114"