forked from gsquire/sendgrid-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 loc) · 1001 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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "sendgrid"
version = "0.17.3"
edition = "2018"
authors = ["Garrett Squire <[email protected]>"]
description = "An unofficial client library for the SendGrid API"
repository = "https://github.com/gsquire/sendgrid-rs"
license = "MIT"
homepage = "https://sendgrid.com"
keywords = ["email"]
documentation = "https://docs.rs/sendgrid"
readme = "README.md"
[dependencies]
data-encoding = "2.1"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
url = "2.1"
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
[features]
default = ["native-tls", "blocking"]
async = []
blocking = ["reqwest/blocking"]
rustls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/default-tls"]
[[example]]
name = "v3_async"
required-features = ["async"]
[[example]]
name = "main"
required-features = ["blocking"]
[[example]]
name = "v3"
required-features = ["blocking"]