[package]
edition = "2021"
name = "jamjet-api"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JamJet REST API server — control plane for workflow management"
homepage = "https://jamjet.dev"
documentation = "https://docs.jamjet.dev"
readme = false
keywords = [
"agent",
"workflow",
"mcp",
"a2a",
"llm",
]
categories = [
"development-tools",
"asynchronous",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/jamjet-labs/jamjet"
[lib]
name = "jamjet_api"
path = "src/lib.rs"
[[bin]]
name = "jamjet-server"
path = "src/main.rs"
[[test]]
name = "approval_api"
path = "tests/approval_api.rs"
[[test]]
name = "approval_e2e"
path = "tests/approval_e2e.rs"
[[test]]
name = "artifact_api"
path = "tests/artifact_api.rs"
[[test]]
name = "artifact_resolve"
path = "tests/artifact_resolve.rs"
[[test]]
name = "audit_emit"
path = "tests/audit_emit.rs"
[[test]]
name = "claim_route_policy"
path = "tests/claim_route_policy.rs"
[[test]]
name = "cron_store_api"
path = "tests/cron_store_api.rs"
[[test]]
name = "execution_e2e"
path = "tests/execution_e2e.rs"
[[test]]
name = "fail_route"
path = "tests/fail_route.rs"
[[test]]
name = "java_tool_roundtrip"
path = "tests/java_tool_roundtrip.rs"
[[test]]
name = "work_item_genai"
path = "tests/work_item_genai.rs"
[[test]]
name = "workflow_validation"
path = "tests/workflow_validation.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.7"
features = [
"json",
"macros",
]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.config]
version = "0.14"
[dependencies.dotenvy]
version = "0.15"
[dependencies.jamjet-a2a-proto]
version = "=0.5.0"
[dependencies.jamjet-agents]
version = "=0.5.0"
[dependencies.jamjet-audit]
version = "=0.5.0"
[dependencies.jamjet-core]
version = "=0.5.0"
[dependencies.jamjet-ir]
version = "=0.5.0"
[dependencies.jamjet-mcp]
version = "=0.5.0"
[dependencies.jamjet-models]
version = "=0.5.0"
[dependencies.jamjet-protocols]
version = "=0.5.0"
[dependencies.jamjet-scheduler]
version = "=0.5.0"
[dependencies.jamjet-state]
version = "=0.5.0"
[dependencies.jamjet-telemetry]
version = "=0.5.0"
[dependencies.jamjet-timers]
version = "=0.5.0"
[dependencies.jamjet-worker]
version = "=0.5.0"
[dependencies.mime_guess]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.rust-embed]
version = "8"
features = ["compression"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower-http]
version = "0.5"
features = [
"trace",
"cors",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"serde",
]
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"tls-rustls",
"postgres",
"sqlite",
"uuid",
"chrono",
"json",
]
[dev-dependencies.tower]
version = "0.4"
features = ["util"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]