feat(sandbox): add Node.js code execution support to sandbox

This commit is contained in:
Eternity
2026-01-30 12:08:34 +08:00
parent ee50b25d06
commit 36e0ed15b6
35 changed files with 820 additions and 314 deletions

View File

@@ -0,0 +1,17 @@
[package]
name = "seccomp_redbear"
version = "0.1.1"
edition = "2024"
[lib]
name = "sandbox"
crate-type = ["cdylib"]
[dependencies]
libc = "0.2.180"
libseccomp-sys = "0.3.0"
[features]
default = []
python3 = []
nodejs = []