bazzar/crates/payment-stripe-plugin/Cargo.toml
2023-06-03 13:31:57 +02:00

21 lines
612 B
TOML

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