bazzar/crates/payment_adapter/Cargo.toml

14 lines
393 B
TOML
Raw Normal View History

2022-12-01 17:39:06 +01:00
[package]
name = "payment_adapter"
version = "0.1.0"
edition = "2021"
[dependencies]
2022-12-02 16:05:55 +01:00
config = { path = "../config", default-features = false, features = [] }
2022-12-01 17:39:06 +01:00
model = { path = "../model" }
2022-12-08 16:22:20 +01:00
serde = { version = "1.0.149", features = ['derive'] }
uuid = { version = "1.2.2", features = ['v4'] }
futures = { version = "0.3.25" }
tracing = { version = "0.1.37" }
thiserror = { version = "1.0.37" }