bazzar/crates/payment-adapter/Cargo.toml
2024-06-24 14:54:46 +02:00

19 lines
539 B
TOML

[package]
name = "payment-adapter"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = { workspace = true }
async-trait = { workspace = true }
chrono = { version = "0.4.24" }
config = { path = "../config", default-features = false, features = [] }
futures = { version = "0" }
model = { path = "../model" }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
toml = { version = "0.7.3" }
tracing = { version = "0" }
traitcast = { workspace = true }
uuid = { workspace = true, features = ["v4"] }