[package] name = "stripe_adapter" version = "0.1.0" edition = "2021" [lib] crate-type = ['dylib'] #[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"] [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" } serde = { version = "1.0.162", features = ['derive'] } derive_more = { version = "0.99.17" } async-stripe = { version = "0.21.0", features = ['tokio', 'async', 'runtime-tokio-hyper'] } actix-web = { version = "4.3.1" } thiserror = { version = "1.0.40" }