[package]
edition = "2024"
rust-version = "1.95"
name = "ogham-server"
version = "0.3.0"
authors = ["VerifiedOrganic"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable HTTP server for the Ogham context engineering SDK"
readme = "README.md"
keywords = [
"llm",
"context",
"compression",
"tokens",
"agents",
]
categories = [
"compression",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/signalbreak-labs/ogham"
[lib]
name = "ogham_server"
path = "src/lib.rs"
[[bin]]
name = "ogham-server"
path = "src/main.rs"
[[test]]
name = "http"
path = "tests/http.rs"
[dependencies.axum]
version = "0.8"
[dependencies.ogham]
version = "0.3.0"
[dependencies.ogham-core]
version = "0.3.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tower]
version = "0.5"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]