-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 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
31
32
33
34
[package]
name = "sparklepost"
version = "0.5.5"
authors = [
"mygnu <[email protected]>",
"Rob Ede <[email protected]>",
]
keywords = ["email", "sparkpost", "reqwest"]
description = "Bindings for Sparkpost email API v1"
repository = "https://github.com/x52dev/sparklepost"
license = "MPL-2.0+/LGPL-3.0+"
categories = ["api-bindings", "web-programming"]
edition = "2021"
rust-version = "1.64"
[dependencies]
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
base64 = "0.22"
dotenvy = "0.15"
pretty_assertions = "1"
[lints.rust]
rust_2018_idioms = { level = "deny" }
future_incompatible = { level = "deny" }
nonstandard_style = { level = "deny" }
missing_debug_implementations = { level = "deny", priority = 1 }
[lints.clippy]
clone_on_ref_ptr = { level = "deny" }