[package]
edition = "2024"
name = "salvor-runtime"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Salvor runtime IO edge: the public RunCtx durability substrate, the Agent builder, budget enforcement, and the built-in agent loop"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/joseym/salvor"
[lib]
name = "salvor_runtime"
path = "src/lib.rs"
[[test]]
name = "budgets"
path = "tests/budgets.rs"
[[test]]
name = "compaction"
path = "tests/compaction.rs"
[[test]]
name = "custom_loop"
path = "tests/custom_loop.rs"
[[test]]
name = "happy_path"
path = "tests/happy_path.rs"
[[test]]
name = "kill_resume"
path = "tests/kill_resume.rs"
[[test]]
name = "release_gate"
path = "tests/release_gate.rs"
[[test]]
name = "resolve"
path = "tests/resolve.rs"
[[test]]
name = "streaming_model_call"
path = "tests/streaming_model_call.rs"
[[test]]
name = "suspension"
path = "tests/suspension.rs"
[[test]]
name = "write_ahead"
path = "tests/write_ahead.rs"
[dependencies.salvor-core]
version = "0.5.0"
[dependencies.salvor-llm]
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.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"serde-well-known",
"macros",
]
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.schemars]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"