blvm-node 0.1.2

Bitcoin Commons BLVM: Minimal Bitcoin node implementation using blvm-protocol and blvm-consensus
1
2
3
4
5
6
7
8
9
10
11
12
//! Process sandboxing and resource limits for modules
//!
//! Provides OS-level sandboxing, file system access control, and network isolation
//! to ensure modules cannot access resources outside their allowed scope.

pub mod filesystem;
pub mod network;
pub mod process;

pub use filesystem::FileSystemSandbox;
pub use network::NetworkSandbox;
pub use process::{ProcessSandbox, ResourceLimits, SandboxConfig};