bazzar/crates/payment-adapter/Cargo.toml
2023-06-03 13:31:57 +02:00

19 lines
534 B
TOML

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