- payments service: add DB persistence, wallet credit & ledger on verify - users: coupons validate endpoint, coupon usage validation - users: trigger_activation: assign user_role, credit 250 TC, ledger, notification - users: add_notes: send document request notification - fix employees port conflict - update gateway payments route - misc: add promotions and notifications on approval
18 lines
446 B
TOML
18 lines
446 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" }
|
|
sqlx.workspace = true
|
|
uuid.workspace = true
|
|
chrono.workspace = true
|