[package] name = "tc-api" version = "0.1.0" edition.workspace = true rust-version.workspace = true license.workspace = true publish.workspace = true [dependencies] async-stream = "0.3" axum = "0.8" futures = "0.3" serde = { workspace = true } serde_json = { workspace = true } sqlx = { workspace = true } reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } tc-auth = { path = "../tc-auth" } tc-billing = { path = "../tc-billing" } tc-config = { path = "../tc-config" } tc-db = { path = "../tc-db" } tc-domain = { path = "../tc-domain" } tc-runtime = { path = "../tc-runtime" } tc-safety = { path = "../tc-safety" } tc-scheduler = { path = "../tc-scheduler" } tc-secrets = { path = "../tc-secrets" } thiserror = { workspace = true } time = { workspace = true } tokio = { workspace = true } urlencoding = "2" uuid = { workspace = true } [dev-dependencies] jsonwebtoken = "9" eventsource-stream = "0.2" reqwest = { version = "0.12", default-features = false, features = [ "json", "rustls-tls", "stream", ] } tc-llm = { path = "../tc-llm" } tc-testkit = { path = "../tc-testkit" } hex = "0.4" hmac = "0.12" base64 = "0.22" rand_core = { version = "0.6", features = ["getrandom"] } rsa = { version = "0.9", features = ["pem"] } sha2 = "0.10" [lints] workspace = true