Files
noprocess/examples/parallel/Cargo.toml
kjuulh 5cae3ba93d feat: add a very high amount of parallel processes
The library is not intended to handle this many tasks created so fast, and as such it is not optimized for. Generally we only allow a single modifier to the process manager at once. However, even then it can start and run a lot of tasks at once. Note that these processes, are comparable to pods / wasm containers / etc. And as such it wouldn't be realistic to run so many in parallel.

Signed-off-by: kjuulh <contact@kjuulh.io>
2026-01-07 16:10:05 +01:00

15 lines
259 B
TOML

[package]
name = "parallel"
version = "0.1.0"
edition = "2024"
[dependencies]
noprocess.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tracing.workspace = true
anyhow.workspace = true
rand.workspace = true
tracing-subscriber = "0.3.22"