| Crates.io | vex-runtime |
| lib.rs | vex-runtime |
| version | 0.1.2 |
| created_at | 2025-12-14 22:22:59.437958+00 |
| updated_at | 2025-12-18 01:44:48.445812+00 |
| description | Tokio-based agent orchestration for VEX |
| homepage | |
| repository | https://github.com/provnai/vex |
| max_upload_size | |
| id | 1985198 |
| size | 110,027 |
Tokio-based agent orchestration for the VEX Protocol.
[dependencies]
vex-runtime = "0.1"
use vex_runtime::Runtime;
use vex_core::Agent;
#[tokio::main]
async fn main() {
let runtime = Runtime::new();
let agent = Agent::new("worker");
runtime.spawn(agent).await;
}
MIT License - see LICENSE for details.