- Add AI plans, credits, model routing, LiteLLM client, and orchestrator services - Add AI management endpoints, auto-apply/auto-request handlers, and log endpoints - Add cron jobs for daily action reset and monthly credit reset - Add AI credit purchase flow in payments service - Add ai_credit_packages migration with seed data - Update Dockerfile build tooling across services
31 lines
818 B
TOML
31 lines
818 B
TOML
[package]
|
|
name = "users"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
db = { path = "../../crates/db" }
|
|
auth = { path = "../../crates/auth" }
|
|
email = { path = "../../crates/email" }
|
|
contracts = { path = "../../crates/contracts" }
|
|
cache = { path = "../../crates/cache" }
|
|
rand = "0.8"
|
|
anyhow = { workspace = true }
|
|
reqwest = { workspace = true, features = ["stream"] }
|
|
regex = { workspace = true }
|
|
redis = { workspace = true }
|
|
futures = "0.3"
|
|
async-stream = "0.3"
|
|
thiserror = { workspace = true }
|
|
jsonwebtoken = "9"
|
|
tower = "0.5"
|
|
|