[package]
edition = "2024"
name = "salvor-server"
version = "0.5.2"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Salvor control plane: an HTTP + server-sent-events server over the durable runtime"
readme = false
keywords = [
"durable-execution",
"event-sourcing",
"agents",
"workflow",
"replay",
]
categories = [
"asynchronous",
"development-tools",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joseym/salvor"
[features]
default = ["ui"]
ui = ["dep:rust-embed"]
[lib]
name = "salvor_server"
path = "src/lib.rs"
[[test]]
name = "abandon"
path = "tests/abandon.rs"
[[test]]
name = "agents"
path = "tests/agents.rs"
[[test]]
name = "client_runs"
path = "tests/client_runs.rs"
[[test]]
name = "durability"
path = "tests/durability.rs"
[[test]]
name = "fork"
path = "tests/fork.rs"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "model_step"
path = "tests/model_step.rs"
[[test]]
name = "runs_list"
path = "tests/runs_list.rs"
[[test]]
name = "runs_list_timing"
path = "tests/runs_list_timing.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[test]]
name = "tool_step"
path = "tests/tool_step.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.rust-embed]
version = "8"
optional = true
[dependencies.salvor-core]
version = "0.5.0"
[dependencies.salvor-engine]
version = "0.5.0"
[dependencies.salvor-graph]
version = "0.5.0"
[dependencies.salvor-llm]
version = "0.5.0"
[dependencies.salvor-replay]
version = "0.5.0"
[dependencies.salvor-runtime]
version = "0.5.0"
[dependencies.salvor-store]
version = "0.5.0"
[dependencies.salvor-tools]
version = "0.5.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"serde-well-known",
"macros",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
"stream",
"stream",
]
default-features = false
[dev-dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"time",
]
[dev-dependencies.wiremock]
version = "0.6"