From a252d447589e784bd805c312b875db5e8002451b Mon Sep 17 00:00:00 2001 From: Eyal Kalderon Date: Sun, 24 Nov 2019 20:49:53 +0800 Subject: [PATCH] Note std::process::Command configuration in README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7db8850..9363fd6 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,11 @@ fine-grained access control. ## Work in progress - [x] Spawn commands under a cloned process in a new namespace. +- [x] Environment variables, arguments, and current working directory can be + configured via the standard `std::process::Command` builder. +- [ ] Command stdio can be configured via the standard `std::process::Command` + builder (this is currently unsupported until rust-lang/rust#44434 is + resolved). - [x] Multiple sandboxes can be spawned in multi-threaded programs without interfering with each other (this is possible because `clone(2)` ensures process isolation between parent and sandbox).