[package]
edition = "2021"
name = "agent-os-execution"
version = "0.2.0-rc.3"
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 Agent OS"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rivet-dev/agent-os"
[lib]
name = "agent_os_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 = "wasm"
path = "tests/wasm.rs"
[dependencies.agent-os-bridge]
version = "0.2.0-rc.3"
[dependencies.agent-os-v8-runtime]
version = "0.2.0-rc.3"
[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",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wat]
version = "1"