feat: add basic process manager

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2026-01-07 14:12:49 +01:00
commit a5f6dfa972
7 changed files with 1051 additions and 0 deletions

11
Cargo.toml Normal file
View File

@@ -0,0 +1,11 @@
[workspace]
members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.dependencies]
noprocess = { path = "crates/noprocess" }
anyhow = { version = "1.0.71" }
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tokio-util = "0.7.18"