[package]
edition = "2024"
rust-version = "1.85"
name = "nexara-runtime"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Policy-enforced Nexara runtime for listing and calling tools"
homepage = "https://github.com/deliberium/nexara"
readme = "README.md"
keywords = [
"agents",
"tools",
"policy",
"capabilities",
"ai",
]
categories = [
"api-bindings",
"authentication",
"config",
]
license = "MIT"
repository = "https://github.com/deliberium/nexara"
[lib]
name = "nexara_runtime"
path = "src/lib.rs"
[[test]]
name = "runtime_call_flow"
path = "tests/runtime_call_flow.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.nexara-core]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.40.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dev-dependencies.tokio]
version = "1.40.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]