bazzar/crates/payment-adapter/Cargo.toml

19 lines
534 B
TOML
Raw Normal View History

2022-12-01 17:39:06 +01:00
[package]
2023-06-01 22:02:47 +02:00
name = "payment-adapter"
2022-12-01 17:39:06 +01:00
version = "0.1.0"
edition = "2021"
[dependencies]
2023-06-03 13:31:57 +02:00
actix-web = { version = "4.3.1" }
async-trait = { version = "0.1.68" }
chrono = { version = "0.4.24" }
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" }
2023-05-15 22:55:09 +02:00
toml = { version = "0.7.3" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }
2023-05-15 22:55:09 +02:00
traitcast = { version = "0.5.0" }
2023-06-03 13:31:57 +02:00
uuid = { version = "1", features = ['v4'] }