- Restore deleted module declarations (tutor, ugc_content_creator, user, user_role_profile, verification, video_editor) in db/models/mod.rs - Add mod ai; to users/src/main.rs (fixes crate::ai import) - Add pub mod ai_auto; to handlers/mod.rs - Add rust_decimal dependency to payments/Cargo.toml - Fix missing PgPool import in payments/src/ai_credits.rs - Make LiteLLMUsage fields public in users/src/litellm.rs - Add get_llm_base_url() and get_llm_model() helper functions - Remove leading underscore from variables that are used Partial fix for high-performance branch build issues.
23 lines
589 B
TOML
23 lines
589 B
TOML
[package]
|
|
name = "payments"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
axum.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
anyhow.workspace = true
|
|
contracts = { path = "../../crates/contracts" }
|
|
db = { path = "../../crates/db" }
|
|
sqlx.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
rand = "0.8"
|
|
rust_decimal = { version = "1.35", features = ["db-tokio-postgres"] }
|