[package]
edition = "2024"
rust-version = "1.92"
name = "email-message-wire"
version = "0.8.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC822/MIME wire parsing and rendering for email-message"
homepage = "https://email-rs.dev"
readme = "README.md"
keywords = [
"email",
"mime",
"rfc822",
"smtp",
]
categories = [
"email",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sagikazarmark/email-rs"
[lib]
name = "email_message_wire"
path = "src/lib.rs"
[[test]]
name = "property_roundtrip"
path = "tests/property_roundtrip.rs"
[[test]]
name = "rfc822_attachments"
path = "tests/rfc822_attachments.rs"
[[test]]
name = "rfc822_edge_cases"
path = "tests/rfc822_edge_cases.rs"
[[test]]
name = "rfc822_io"
path = "tests/rfc822_io.rs"
[dependencies.base64]
version = "0.23"
[dependencies.email-message]
version = "0.8.0"
features = ["mime"]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
]
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"