2026-07-16 06:46:02 +01:00
|
|
|
[package]
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
name = "xai-grok-subagent-resolution"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
2026-07-23 17:12:33 +00:00
|
|
|
description = "Shared subagent definition, runtime, prompt, and resume resolution"
|
2026-07-16 06:46:02 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-07-23 17:12:33 +00:00
|
|
|
chrono = { workspace = true }
|
2026-07-16 06:46:02 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2026-07-23 17:12:33 +00:00
|
|
|
xai-grok-agent = { path = "../xai-grok-agent" }
|
2026-07-16 06:46:02 +01:00
|
|
|
xai-grok-sampling-types = { path = "../xai-grok-sampling-types" }
|
|
|
|
|
xai-grok-tools = { path = "../xai-grok-tools" }
|
|
|
|
|
xai-tool-types.workspace = true
|
2026-07-23 17:12:33 +00:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
2026-07-16 06:46:02 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|
2026-07-23 17:12:33 +00:00
|
|
|
tokio = { workspace = true, features = ["macros", "rt"] }
|
2026-07-16 06:46:02 +01:00
|
|
|
toml = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|