[package]
edition = "2021"
rust-version = "1.88"
name = "jmap-mail-client"
version = "0.1.2"
authors = ["Mark Atwood <mark@reviewcommit.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 8621 JMAP for Mail client — Email, Mailbox, Thread, Identity, EmailSubmission methods"
readme = "README.md"
keywords = [
"jmap",
"rfc8621",
"client",
"mail",
]
categories = [
"network-programming",
"asynchronous",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MarkAtwood/crate-jmap"
[lib]
name = "jmap_mail_client"
path = "src/lib.rs"
[[example]]
name = "mailbox_list"
path = "examples/mailbox_list.rs"
[[test]]
name = "email_extras_regression"
path = "tests/email_extras_regression.rs"
[[test]]
name = "email_query_smoke_tests"
path = "tests/email_query_smoke_tests.rs"
[[test]]
name = "extras_passthrough_tests"
path = "tests/extras_passthrough_tests.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "mailbox_smoke_tests"
path = "tests/mailbox_smoke_tests.rs"
[[test]]
name = "search_snippet_smoke_tests"
path = "tests/search_snippet_smoke_tests.rs"
[[test]]
name = "submission_get_changes"
path = "tests/submission_get_changes.rs"
[[test]]
name = "submission_query"
path = "tests/submission_query.rs"
[[test]]
name = "submission_set"
path = "tests/submission_set.rs"
[[test]]
name = "thread_smoke_tests"
path = "tests/thread_smoke_tests.rs"
[[test]]
name = "vacation_smoke_tests"
path = "tests/vacation_smoke_tests.rs"
[dependencies.jmap-base-client]
version = "0.1"
[dependencies.jmap-mail-types]
version = "0.1"
[dependencies.jmap-types]
version = "0.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
]
[dev-dependencies.wiremock]
version = "0.6"