[package]
edition = "2021"
rust-version = "1.70"
name = "shopify-client"
version = "1.1.0"
authors = ["Sahil Sinha"]
build = false
exclude = [
".gitignore",
".vscode/*",
"types/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe, async Rust client for the Shopify Admin and Storefront APIs"
homepage = "https://github.com/sinha-sahil/shopify-rust-client"
documentation = "https://docs.rs/shopify-client"
readme = "README.md"
keywords = [
"shopify",
"api",
"client",
"ecommerce",
"webhooks",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/sinha-sahil/shopify-rust-client"
[features]
default = []
storefront = ["dep:time"]
[lib]
name = "shopify_client"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.reqwest]
version = "0.12.4"
features = ["json"]
[dependencies.serde]
version = "1.0.201"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.117"
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde-human-readable",
]
optional = true