bazzar/crates/payment-pay-u-plugin/Cargo.toml

23 lines
596 B
TOML
Raw Normal View History

2022-12-02 16:05:55 +01:00
[package]
2023-06-01 22:02:47 +02:00
name = "payment-pay-u"
2022-12-02 16:05:55 +01:00
version = "0.1.0"
edition = "2021"
[lib]
2023-05-05 14:20:50 +02:00
crate-type = ['dylib']
2023-06-03 13:31:57 +02:00
#[build]
#rustflags = ["-C", "prefer-dynamic", "-C", "rpath"]
2022-12-02 16:05:55 +01:00
[dependencies]
2024-06-24 14:54:46 +02:00
async-trait = { workspace = true }
bincode = { workspace = true }
2022-12-20 15:34:20 +01:00
chrono = { version = "0", features = ['alloc', 'wasmbind'] }
2024-06-24 14:54:46 +02:00
common_macros = { workspace = true }
2023-05-05 14:20:50 +02:00
fulfillment_adapter = { path = "../fulfillment_adapter" }
2023-06-03 13:31:57 +02:00
payment-adapter = { path = "../payment-adapter" }
2024-06-24 14:54:46 +02:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }