bazzar/crates/payment-stripe-plugin/Cargo.toml

21 lines
600 B
TOML
Raw Permalink Normal View History

2023-05-05 14:20:50 +02:00
[package]
2023-06-01 22:02:47 +02:00
name = "payment-stripe"
2023-05-05 14:20:50 +02:00
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ['dylib']
[dependencies]
2024-06-24 14:54:46 +02:00
actix-web = { workspace = true }
async-stripe = { workspace = true, features = ["tokio", "async", "runtime-tokio-hyper"] }
async-trait = { workspace = true }
2023-05-16 21:34:46 +02:00
derive_more = { version = "0.99.17" }
2023-06-03 13:31:57 +02:00
fulfillment_adapter = { path = "../fulfillment_adapter" }
payment-adapter = { path = "../payment-adapter" }
plugin-api = { workspace = true }
2024-06-24 14:54:46 +02:00
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
tokio = { workspace = true }
2023-06-03 13:31:57 +02:00
tracing = { version = "0.1.37" }