40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "simple-payment-gateway"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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]
|
|
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
|
|
const_format = "0.2.32"
|
|
enum-iterator = "2.0.0"
|
|
|
|
[build-dependencies]
|
|
cynic-codegen.workspace = true
|