bazzar/crates/payment_manager/Cargo.toml

39 lines
1.4 KiB
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "payment_manager"
version = "0.1.0"
edition = "2021"
2022-12-01 17:39:06 +01:00
[[bin]]
name = "payment-manager"
path = "./src/main.rs"
2022-05-06 11:47:18 +02:00
[dependencies]
2022-12-20 15:34:20 +01:00
bincode = { version = "1" }
2022-12-01 17:39:06 +01:00
channels = { path = "../channels" }
2022-12-20 15:34:20 +01:00
chrono = { version = "0", features = ["serde"] }
2022-11-04 18:40:14 +01:00
config = { path = "../config" }
2022-12-01 17:39:06 +01:00
db-utils = { path = "../db-utils" }
2022-12-20 15:34:20 +01:00
gumdrop = { version = "0", features = [] }
llvmenv = { version = "0" }
2022-11-11 16:32:07 +01:00
model = { path = "../model", features = ["db"] }
2023-06-01 22:02:47 +02:00
payment-adapter = { path = "../payment-adapter" }
2022-12-20 15:34:20 +01:00
reqwest = { version = "0", features = ["default", "json", "blocking"] }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-12-20 15:34:20 +01:00
serde = { version = "1", features = ["derive"] }
sqlx = { version = "0", features = ["migrate", "runtime-actix-rustls", "all-types", "postgres"] }
sqlx-core = { version = "0", features = [] }
tarpc = { version = "0", features = ["tokio1", "serde-transport-bincode", "serde-transport", "serde", "serde-transport-json", "tcp"] }
thiserror = { version = "1" }
tokio = { version = "1", features = ['full'] }
tracing = { version = "0" }
uuid = { version = "1", features = ["serde", "v4"] }
wapc = { version = "1", features = [] }
wapc-codec = { version = "1", features = [] }
wapc-pool = { version = "1", features = [] }
wasmtime = { version = "3", features = ['parallel-compilation', 'async'] }
wasmtime-provider = { version = "1", features = ['wasmtime-wasi', 'wasi-common', 'wasi', 'cache'] }
[dev-dependencies]
2022-12-20 15:34:20 +01:00
fake = { version = "2" }
2022-11-04 18:40:14 +01:00
testx = { path = "../testx" }