saleor-apps-rs/sdk/Cargo.toml

36 lines
1 KiB
TOML
Raw Normal View History

2024-02-27 16:50:48 +00:00
[package]
name = "saleor-app-sdk"
authors = ["Djkáťo <djkatovfx@gmail.com>"]
version = "0.1.0"
edition = "2021"
description = "Unofficial Saleor App SDK like library, made to work with rust."
keywords = ["saleor", "sdk", "plugin"]
categories = ["api-bindings", "web-programming::http-server"]
2024-02-27 16:50:48 +00:00
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"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow.workspace = true
redis = { workspace = true, features = [
"aio",
"tokio-comp",
"connection-manager",
] }
2024-02-27 16:50:48 +00:00
serde.workspace = true
axum.workspace = true
2024-02-27 16:50:48 +00:00
tracing.workspace = true
tracing-subscriber.workspace = true
serde_json.workspace = true
2024-02-27 23:31:25 +00:00
envy.workspace = true
dotenvy.workspace = true
2024-03-06 15:42:04 +00:00
tower = { workspace = true }
reqwest = { version = "0.11.24", features = ["json"] }
jsonwebtoken = "9.2.0"
async-trait = "0.1.77"
2024-03-06 15:42:04 +00:00
http = "1.0.0"
url = "2.5.0"
2024-03-06 15:42:04 +00:00
strum = "0.26.0"
strum_macros = "0.26.1"