-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
44 lines (36 loc) · 1.21 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
# https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "resend-rs"
version = "0.11.2"
edition = "2021"
license = "MIT"
readme = "./README.md"
authors = ["Antonios Barotsis <[email protected]>"]
repository = "https://github.com/resend/resend-rust"
homepage = "https://resend.com/docs/send-with-rust"
documentation = "https://docs.rs/resend-rs"
categories = ["email", "web-programming"]
keywords = ["email", "resend"]
description = "A minimal Resend client."
[features]
default = ["native-tls"]
blocking = ["reqwest/blocking", "maybe-async/is_sync"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
[dependencies]
reqwest = { version = "0.12.5", default-features = false, features = ["json"] }
serde = { version = "1.0.199", features = ["derive"] }
ecow = { version = "0.2.2", features = ["serde"] }
thiserror = { version = "2.0.6" }
maybe-async = { version = "0.2.10" }
governor = "0.7.0"
rand = "0.8.5"
serde_json = "1.0.120"
[dev-dependencies]
jiff = { version = "0.1.4", features = ["serde"] }
tokio = { version = "1.37.0", features = ["macros", "test-util", "rt-multi-thread"] }
# Used in examples
axum = "0.7.9"
svix = "1.42.0"
http-body-util = "0.1.2"
tokio-shared-rt = "0.1.0"