[package]
edition = "2021"
name = "agentos-execution"
version = "0.2.5"
build = "build.rs"
exclude = [
"assets/pyodide/pyodide.asm.wasm",
"assets/pyodide/pyodide.asm.js",
"assets/pyodide/python_stdlib.zip",
"assets/pyodide/numpy-2.2.5-cp313-cp313-pyodide_2025_0_wasm32.whl",
"assets/pyodide/pandas-2.3.3-cp313-cp313-pyodide_2025_0_wasm32.whl",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native execution plane scaffold for secure-exec"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rivet-dev/agent-os"
[lib]
name = "agentos_execution"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "node-import-bench"
path = "src/bin/node-import-bench.rs"
[[test]]
name = "benchmark"
path = "tests/benchmark.rs"
[[test]]
name = "bridge"
path = "tests/bridge.rs"
[[test]]
name = "cjs_esm_interop"
path = "tests/cjs_esm_interop.rs"
[[test]]
name = "javascript_v8"
path = "tests/javascript_v8.rs"
[[test]]
name = "module_resolution"
path = "tests/module_resolution.rs"
[[test]]
name = "permission_flags"
path = "tests/permission_flags.rs"
[[test]]
name = "process"
path = "tests/process.rs"
[[test]]
name = "python"
path = "tests/python.rs"
[[test]]
name = "python_prewarm"
path = "tests/python_prewarm.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "wasi_path_open_read_not_blocked"
path = "tests/wasi_path_open_read_not_blocked.rs"
[[test]]
name = "wasm"
path = "tests/wasm.rs"
[dependencies.agentos-bridge]
version = "0.2.5"
[dependencies.agentos-v8-runtime]
version = "0.2.5"
[dependencies.base64]
version = "0.22"
[dependencies.ciborium]
version = "0.2"
[dependencies.getrandom]
version = "0.2"
[dependencies.nix]
version = "0.29"
features = ["fs"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wat]
version = "1"
[build-dependencies.agentos-build-support]
version = "0.2.5"