[package] name = "tc-runtime" version = "0.1.0" edition.workspace = true rust-version.workspace = true license.workspace = true publish.workspace = true [dependencies] async-trait = "0.1" chrono = { version = "0.4", default-features = false, features = ["clock"] } croner = "2" futures = "0.3" serde = { workspace = true } serde_json = { workspace = true } sqlx = { workspace = true } tc-db = { path = "../tc-db" } tc-domain = { path = "../tc-domain" } tc-files = { path = "../tc-files" } tc-llm = { path = "../tc-llm" } tc-safety = { path = "../tc-safety" } tc-secrets = { path = "../tc-secrets" } tc-tools = { path = "../tc-tools" } thiserror = { workspace = true } time = { workspace = true } tokio = { workspace = true } uuid = { workspace = true } [dev-dependencies] axum = "0.8" tc-secrets = { path = "../tc-secrets" } tc-testkit = { path = "../tc-testkit" } [lints] workspace = true