bazzar/crates/payment-adapter/Cargo.toml

19 lines
539 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]
2024-06-24 14:54:46 +02:00
actix-web = { workspace = true }
async-trait = { workspace = true }
2023-06-03 13:31:57 +02:00
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" }
2024-06-24 14:54:46 +02:00
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
2023-05-15 22:55:09 +02:00
toml = { version = "0.7.3" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }
2024-06-24 14:54:46 +02:00
traitcast = { workspace = true }
uuid = { workspace = true, features = ["v4"] }