deck-sandbox 0.1.1

seccomp + landlock sandbox host for untrusted MCP servers (ono-sendai)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Non-Linux stub. Reports unavailable; never enforces.

use deck_core::Sandbox;

#[derive(Debug, Default)]
pub struct StubSandbox {
    _placeholder: (),
}

impl Sandbox for StubSandbox {
    fn availability(&self) -> &'static str {
        "unsupported (non-linux)"
    }

    fn enforces(&self) -> bool {
        false
    }
}