bazzar/crates/stripe_adapter/Cargo.toml

38 lines
884 B
TOML
Raw Normal View History

2023-05-05 14:20:50 +02:00
[package]
name = "stripe_adapter"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ['dylib']
2023-05-24 19:03:49 +02:00
#[lib]
#crate-type = ['dylib']
#name = "stripe-common"
#path = "./src/lib.rs"
#
#[lib]
#crate-type = ['dylib']
#name = "stripe-adapters"
#path = "./src/adapters.rs"
#
#[lib]
#crate-type = ['dylib']
#name = "stripe-web"
#path = "./src/web.rs"
#[build]
#rustflags = ["-C", "prefer-dynamic", "-C", "rpath"]
2023-05-05 14:20:50 +02:00
[dependencies]
payment_adapter = { path = "../payment_adapter" }
fulfillment_adapter = { path = "../fulfillment_adapter" }
tokio = { version = "1.27.0" }
tracing = { version = "0.1.37" }
async-trait = { version = "0.1.68" }
2023-05-15 22:55:09 +02:00
serde = { version = "1.0.162", features = ['derive'] }
2023-05-16 21:34:46 +02:00
derive_more = { version = "0.99.17" }
2023-05-22 22:06:05 +02:00
async-stripe = { version = "0.21.0", features = ['tokio', 'async', 'runtime-tokio-hyper'] }
actix-web = { version = "4.3.1" }
2023-05-24 19:03:49 +02:00
thiserror = { version = "1.0.40" }