saleor-apps-rs/Cargo.toml

29 lines
890 B
TOML
Raw Normal View History

2024-02-27 16:50:48 +00:00
[workspace]
members = ["sdk", "app-template", "sitemap-generator", "simple-payment-gateway"]
2024-02-27 16:50:48 +00:00
resolver = "2"
2024-02-21 21:37:06 +00:00
2024-02-27 16:50:48 +00:00
[workspace.dependencies]
2024-04-15 17:51:44 +00:00
anyhow = "1.0.82"
cynic = { version = "3.5.1", features = ["http-surf"] }
2024-03-06 15:42:04 +00:00
surf = "2.3.2"
2024-04-15 17:51:44 +00:00
serde = "1.0.197"
serde_json = "1.0.115"
tokio = { version = "1.37.0", features = ["full"] }
redis = { version = "0.25.3", features = [
"aio",
"tokio-comp",
"connection-manager",
] }
2024-02-21 21:37:06 +00:00
envy = "0.4.2"
tracing = "0.1.40"
tracing-serde = "0.1.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2024-02-21 21:37:06 +00:00
dotenvy = "0.15.7"
2024-04-15 17:51:44 +00:00
axum = "0.7.5"
saleor-app-sdk = { path = "sdk" }
2024-02-27 16:50:48 +00:00
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
2024-04-15 17:51:44 +00:00
cynic-codegen = "3.5.1"
rust_decimal = { version = "1.35.0", features = ["serde-float"] }
2024-03-18 17:52:05 +00:00
iso_currency = { version = "0.4.4", features = ["with-serde", "iterator"] }