bazzar/crates/payment_adapter/Cargo.toml

18 lines
500 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'] }
2023-05-05 14:20:50 +02:00
async-trait = { version = "0.1.68" }
2023-05-15 22:55:09 +02:00
chrono = { version = "0.4.24" }
toml = { version = "0.7.3" }
traitcast = { version = "0.5.0" }