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

21 lines
612 B
TOML
Raw 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]
2023-06-03 13:31:57 +02:00
actix-web = { version = "4.3.1" }
async-stripe = { version = "0.21.0", features = ['tokio', 'async', 'runtime-tokio-hyper'] }
2023-05-05 14:20:50 +02:00
async-trait = { version = "0.1.68" }
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 }
serde = { version = "1.0.162", features = ['derive'] }
2023-05-24 19:03:49 +02:00
thiserror = { version = "1.0.40" }
2023-06-03 13:31:57 +02:00
tokio = { version = "1.27.0" }
tracing = { version = "0.1.37" }