bazzar/crates/payment-stripe-plugin/Cargo.toml
2024-06-24 14:54:46 +02:00

21 lines
600 B
TOML

[package]
name = "payment-stripe"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ['dylib']
[dependencies]
actix-web = { workspace = true }
async-stripe = { workspace = true, features = ["tokio", "async", "runtime-tokio-hyper"] }
async-trait = { workspace = true }
derive_more = { version = "0.99.17" }
fulfillment_adapter = { path = "../fulfillment_adapter" }
payment-adapter = { path = "../payment-adapter" }
plugin-api = { workspace = true }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { version = "0.1.37" }