| Crates.io | aegis-wasm-cli |
| lib.rs | aegis-wasm-cli |
| version | 0.1.1 |
| created_at | 2026-01-11 18:27:33.061691+00 |
| updated_at | 2026-01-11 18:27:33.061691+00 |
| description | Command-line interface for the Aegis WebAssembly sandbox |
| homepage | https://github.com/aayushadhikari7/aegis |
| repository | https://github.com/aayushadhikari7/aegis |
| max_upload_size | |
| id | 2036168 |
| size | 78,946 |
Command-line interface for the Aegis WebAssembly sandbox.
cargo install aegis-wasm-cli
# Run a WebAssembly module
aegis run module.wasm --function add -- 2 3
# Run with resource limits
aegis run module.wasm --memory-limit 67108864 --fuel-limit 1000000 --timeout 30
# Run with capabilities
aegis run module.wasm --allow-read /data --allow-logging
# Validate a module
aegis validate module.wasm
# Inspect module exports/imports
aegis inspect module.wasm --all
run - Execute a WebAssembly modulevalidate - Validate a WebAssembly moduleinspect - Inspect module exports, imports, and metadata--format human - Human-readable output (default)--format json - Pretty JSON--format json-compact - Compact JSONMIT OR Apache-2.0