[package]
edition = "2024"
rust-version = "1.85"
name = "nexara-server"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone HTTP server for Nexara tools and skill administration"
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_server"
path = "src/lib.rs"
[[bin]]
name = "nexara-server"
path = "src/main.rs"
[[test]]
name = "http_roundtrip_benchmark"
path = "tests/http_roundtrip_benchmark.rs"
[[test]]
name = "routes"
path = "tests/routes.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["macros"]
[dependencies.nexara-core]
version = "0.1.1"
[dependencies.nexara-registry]
version = "0.1.1"
[dependencies.nexara-runtime]
version = "0.1.1"
[dependencies.nexara-secrets]
version = "0.1.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.subtle]
version = "2"
[dependencies.tokio]
version = "1.40.0"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tower-http]
version = "0.6"
features = [
"trace",
"cors",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]