saleor-apps-rs/simple-payment-gateway/Cargo.toml

43 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "simple-payment-gateway"
2024-05-17 14:04:23 +00:00
version = "0.1.1"
edition = "2021"
2024-03-11 13:11:47 +00:00
authors = ["Djkáťo <djkatovfx@gmail.com>"]
description = "Payment gateway that adds payment methods that don't need actual verification: Cash on delivery, Cash on warehouse pickup, bank tranfer."
homepage = "https://github.com/djkato/saleor-app-rs-template"
repository = "https://github.com/djkato/saleor-app-rs-template"
documentation = "https://github.com/djkato/saleor-app-rs-template"
keywords = ["saleor", "sdk", "plugin", "template"]
categories = ["api-bindings", "web-programming::http-server"]
license = "PolyForm-Noncommercial-1.0.0"
[dependencies]
2024-03-11 13:11:47 +00:00
anyhow.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }
redis = { workspace = true, features = [
"aio",
"tokio-comp",
"connection-manager",
] }
envy.workspace = true
tracing.workspace = true
tracing-serde.workspace = true
tracing-subscriber.workspace = true
dotenvy.workspace = true
axum.workspace = true
saleor-app-sdk.workspace = true
tower = { workspace = true, features = ["util"] }
tower-http = { workspace = true, features = ["fs", "trace"] }
surf.workspace = true
cynic = { workspace = true, features = ["http-surf"] }
cynic-codegen.workspace = true
2024-03-14 13:33:22 +00:00
rust_decimal = { workspace = true, features = ["serde-float"] }
2024-03-18 17:52:05 +00:00
iso_currency = { workspace = true, features = ["with-serde", "iterator"] }
2024-03-11 13:11:47 +00:00
const_format = "0.2.32"
2024-03-12 19:48:20 +00:00
enum-iterator = "2.0.0"
2024-03-11 13:11:47 +00:00
[build-dependencies]
cynic-codegen.workspace = true