[package] name = "cm-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" lettre = { version = "0.11", default-features = false, features = [ "tokio1", "tokio1-rustls-tls", "smtp-transport", "builder", ] } serde = { workspace = true } serde_json = { workspace = true } sqlx = { workspace = true } cm-billing = { path = "../cm-billing" } cm-brain = { path = "../cm-brain" } cm-db = { path = "../cm-db" } cm-domain = { path = "../cm-domain" } cm-files = { path = "../cm-files" } cm-llm = { path = "../cm-llm" } cm-safety = { path = "../cm-safety" } cm-sandbox = { path = "../cm-sandbox" } cm-secrets = { path = "../cm-secrets" } cm-tools = { path = "../cm-tools" } thiserror = { workspace = true } time = { workspace = true } tokio = { workspace = true } uuid = { workspace = true } [dev-dependencies] axum = "0.8" cm-secrets = { path = "../cm-secrets" } cm-testkit = { path = "../cm-testkit" } [lints] workspace = true