-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
45 lines (40 loc) · 1.52 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "shopify_api"
description = "Shopify API client"
documentation = "https://docs.rs/shopify_api"
readme = "README.md"
repository = "https://github.com/0xtlt/shopify_api"
version = "0.9.1"
edition = "2021"
keywords = ["shopify", "api", "client"]
categories = ["api-bindings", "web-programming"]
license = "MIT"
authors = ["Thomas Tastet"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
serde_json = { version = "1", default-features = false }
serde = { version = "1", default-features = false, features = ["derive"] }
chrono = "0.4"
tokio = { version = "1", features = ["time"] }
log = "0.4"
simple_logger = "4.3"
thiserror = "1.0"
hmac = { version = "0.12", optional = true }
sha2 = { version = "0.10", optional = true }
base64 = { version = "0.22", optional = true }
warp = { version = "0.3", optional = true, default-features = false, features = [] }
bytes = { version = "1.6", optional = true }
graphql_client = { version = "0.14", optional = true }
serde_path_to_error = { version = "0.1", optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
[features]
default = ["full", "rustls"]
warp-wrapper = ["warp", "bytes"]
graphql-client = ["graphql_client"]
full = ["default", "webhooks", "graphql-client", "debug"]
rustls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
webhooks = ["hmac", "sha2", "base64"]
debug = ["serde_path_to_error"]