forked from oxidecomputer/third-party-api-clients
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (41 loc) · 1.28 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 = "gusto-api"
description = "A fully generated & opinionated API client for the Gusto API."
version = "0.2.12"
documentation = "https://docs.rs/gusto-api/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/gusto"
readme = "README.md"
edition = "2018"
license = "MIT"
[dependencies]
anyhow = "1"
async-recursion = "^0.3.2"
chrono = { version = "0.4", features = ["serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "^0.2.4"
hyperx = "1"
jsonwebtoken = "7"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
percent-encoding = "2.1"
reqwest = { version = "0.11", features = ["json", "multipart"] }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "^0.7"
url = { version = "2", features = ["serde"] }
bytes = { version = "1", features = ["serde"] }
async-trait = "^0.1.51"
urlencoding = "^1.3.3"
uuid = { version = "^0.8", features = ["serde", "v4"] }
[dev-dependencies]
base64 = "^0.12"
dirs = "^3.0.2"
nom_pem = "4"
tokio = { version = "1.8.0", features = ["full"] }
[features]
# enable etag-based http_cache functionality
httpcache = ["dirs"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]