-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
30 lines (28 loc) · 923 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
30
[package]
name = "hubspot"
version = "0.2.4"
edition = "2021"
repository = "https://github.com/WORK180/hubspot"
keywords = ["hubspot", "crm", "customer", "api"]
categories = ["api-bindings"]
license = "MIT"
description = "An unofficial hupspot api client library."
include = ["src/**/*", "LICENSE-*", "README.md"]
readme = "README.md"
rust-version = "1.73"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.53"
serde_json = "1.0.82"
serde = { version = "1.0", features = ["derive"] }
serde-aux = "4.1.2"
strum = "0.25.0"
strum_macros = "0.25.3"
reqwest = { version = "0.11.13", default-features = false, features = [
"json",
"rustls-tls",
] }
time = { version = "0.3.6", features = ["std", "serde", "serde-well-known"] }
[dev-dependencies]
dotenv = "0.15"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }