[package]
edition = "2024"
name = "salvor-cli"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Salvor CLI: run, resume, list, history, and replay for durable agent runs"
homepage = "https://github.com/joseym/salvor"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/joseym/salvor"
[package.metadata.dist]
default-features = false
[package.metadata.dist.binaries]
"*" = ["salvor"]
[features]
default = [
"fixture",
"ui",
]
fixture = [
"dep:rmcp",
"dep:schemars",
"dep:async-trait",
]
ui = ["salvor-server/ui"]
[lib]
name = "salvor_cli"
path = "src/lib.rs"
[[bin]]
name = "salvor"
path = "src/main.rs"
[[bin]]
name = "salvor-demo-model"
path = "src/bin/salvor_demo_model.rs"
required-features = ["fixture"]
[[bin]]
name = "salvor-demo-research"
path = "src/bin/demo_research.rs"
required-features = ["fixture"]
[[bin]]
name = "salvor-mcp-count-fixture"
path = "src/bin/mcp_count_fixture.rs"
required-features = ["fixture"]
[[test]]
name = "abandon"
path = "tests/abandon.rs"
[[test]]
name = "agent_config"
path = "tests/agent_config.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "demo_run"
path = "tests/demo_run.rs"
[[test]]
name = "dev_serve"
path = "tests/dev_serve.rs"
[[test]]
name = "fork_cli"
path = "tests/fork_cli.rs"
[[test]]
name = "graph_cli"
path = "tests/graph_cli.rs"
[[test]]
name = "graph_run"
path = "tests/graph_run.rs"
[[test]]
name = "kill_resume"
path = "tests/kill_resume.rs"
[[test]]
name = "parked_resume"
path = "tests/parked_resume.rs"
[[test]]
name = "progress"
path = "tests/progress.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "serve_demo_tools"
path = "tests/serve_demo_tools.rs"
[[test]]
name = "serve_kill"
path = "tests/serve_kill.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.libc]
version = "0.2"
[dependencies.rmcp]
version = "=2.2.0"
features = [
"server",
"transport-io",
"macros",
"schemars",
]
optional = true
default-features = false
[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-runtime]
version = "0.5.0"
[dependencies.salvor-server]
version = "0.5.0"
default-features = false
[dependencies.salvor-store]
version = "0.5.0"
[dependencies.salvor-tools]
version = "0.5.0"
[dependencies.salvor-wasm]
version = "0.5.0"
[dependencies.schemars]
version = "1"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sysinfo]
version = "0.39"
features = ["system"]
default-features = false
[dependencies.time]
version = "0.3"
features = [
"serde-well-known",
"macros",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"