[package] name = "local-spawn-pool" version = "0.1.0" edition = "2021" license = "MIT" description = "Spawn `!Send` futures in a pool and await for all of them to finish. Standalone alternative to `tokio::task::LocalSet`." homepage = "https://github.com/Mahdrentys/local-spawn-pool-rs" repository = "https://github.com/Mahdrentys/local-spawn-pool-rs" keywords = ["async", "local", "pool", "spawn", "localset"] categories = ["asynchronous", "concurrency"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = { version = "0.3.25", default-features = false, features = ["alloc"] } [dev-dependencies] tokio = { version = "1.24.2", features = ["rt", "macros", "time"] }