bazzar/crates/payment_adapter/Cargo.toml

14 lines
368 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-20 15:34:20 +01:00
futures = { version = "0" }
2022-12-01 17:39:06 +01:00
model = { path = "../model" }
2022-12-20 15:34:20 +01:00
serde = { version = "1", features = ['derive'] }
thiserror = { version = "1" }
tracing = { version = "0" }
uuid = { version = "1", features = ['v4'] }