bazzar/crates/payment_adapter/Cargo.toml
2023-05-22 22:06:05 +02:00

19 lines
534 B
TOML

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