[package]
edition = "2024"
rust-version = "1.85"
name = "emailit"
version = "2.0.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The official Rust SDK for the Emailit Email API"
homepage = "https://emailit.com"
documentation = "https://docs.rs/emailit"
readme = "README.md"
keywords = [
"email",
"emailit",
"api",
"sdk",
]
categories = [
"api-bindings",
"email",
"web-programming",
]
license = "MIT"
repository = "https://github.com/emailit/emailit-rust"
[lib]
name = "emailit"
path = "src/lib.rs"
[[test]]
name = "api_keys_test"
path = "tests/api_keys_test.rs"
[[test]]
name = "audiences_test"
path = "tests/audiences_test.rs"
[[test]]
name = "client_test"
path = "tests/client_test.rs"
[[test]]
name = "contacts_test"
path = "tests/contacts_test.rs"
[[test]]
name = "domains_test"
path = "tests/domains_test.rs"
[[test]]
name = "email_verification_lists_test"
path = "tests/email_verification_lists_test.rs"
[[test]]
name = "email_verifications_test"
path = "tests/email_verifications_test.rs"
[[test]]
name = "emails_test"
path = "tests/emails_test.rs"
[[test]]
name = "error_test"
path = "tests/error_test.rs"
[[test]]
name = "events_test"
path = "tests/events_test.rs"
[[test]]
name = "subscribers_test"
path = "tests/subscribers_test.rs"
[[test]]
name = "suppressions_test"
path = "tests/suppressions_test.rs"
[[test]]
name = "templates_test"
path = "tests/templates_test.rs"
[[test]]
name = "webhook_signature_test"
path = "tests/webhook_signature_test.rs"
[[test]]
name = "webhooks_test"
path = "tests/webhooks_test.rs"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.urlencoding]
version = "2"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.wiremock]
version = "0.5"