-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 853 Bytes
/
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
[package]
name = "zohohorrorshow"
version = "0.8.0"
authors = ["Xymist <[email protected]>"]
repository = "https://github.com/Xymist/zohohorrorshow"
readme = "README.md"
license-file = "LICENSE.md"
description = "A library for interacting with the Zoho Projects API"
edition = "2018"
[dependencies]
# Blocking because it's easier to use, async_iterators aren't stable yet,
# and the Zoho API is slow enough (and rate-limited heavily enough) that
# it doesn't matter.
reqwest = { version = "0.11.16", features = ["json", "blocking"] }
serde = "1.0.160"
serde_json = "1.0.96"
oauth2 = "4.3.0"
url = "2.3.1"
webbrowser = "0.8.9"
openssl = { version = "0.10.24", features = ["vendored"] }
tracing = "0.1.38"
thiserror = "1.0.40"
chrono = { version = "0.4.24", features = ["serde"] }
[dev-dependencies]
dotenv = "0.15.0"
tracing-subscriber = "0.3.17"