[package] name = "payment_manager" version = "0.1.0" edition = "2021" [[bin]] name = "payment-manager" path = "./src/main.rs" [dependencies] bincode = { version = "1" } channels = { path = "../channels" } chrono = { version = "0", features = ["serde"] } config = { path = "../config" } db-utils = { path = "../db-utils" } gumdrop = { version = "0", features = [] } llvmenv = { version = "0" } model = { path = "../model", features = ["db"] } payment-adapter = { path = "../payment-adapter" } reqwest = { version = "0", features = ["default", "json", "blocking"] } rumqttc = { version = "*" } 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] fake = { version = "2" } testx = { path = "../testx" }