[package]
edition = "2021"
rust-version = "1.70"
name = "shopify-sdk"
version = "1.0.0"
authors = ["Sascha Bratton"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust SDK for the Shopify API"
homepage = "https://github.com/saschabratton/shopify-api-rust"
readme = "README.md"
keywords = [
"shopify",
"api",
"sdk",
"ecommerce",
]
categories = [
"api-bindings",
"web-programming",
]
license = "MIT"
repository = "https://github.com/saschabratton/shopify-api-rust"
[lib]
name = "shopify_sdk"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hmac]
version = "0.12"
[dependencies.jsonwebtoken]
version = "9"
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2.5"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.urlencoding]
version = "2.1"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wiremock]
version = "0.5"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"