- New service at apps/ugc_content_creators (port 8095) - DB model + repository in crates/db/src/models/ugc_content_creator.rs - Migration: ugc_content_creator_profiles table with platforms, content_niches, content_formats, follower_count, handles, and standard status/timestamps - Contracts: is_professional_profile_approved() handles UGC_CONTENT_CREATOR case - Gateway: routes /api/ugc-content-creators to new service - Workspace Cargo.toml updated with new member Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
496 B
TOML
18 lines
496 B
TOML
[package]
|
|
name = "ugc_content_creators"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
db = { path = "../../crates/db" }
|
|
auth = { path = "../../crates/auth" }
|
|
contracts = { path = "../../crates/contracts" }
|
|
cache = { path = "../../crates/cache" }
|