diff --git a/Cargo.lock b/Cargo.lock index 5d0aa1d2..4d457f4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1402,6 +1402,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d8a2420e9ce11c2b0583ca97ddff7ab2398c8a613154e9b72e3bafdbf767f1d7" dependencies = [ + "encoding_rs", "hashify", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 0b733da3..f54ddaf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ io-maildir = { version = "0.1", default-features = false, optional = true } io-smtp = { version = "0.1", default-features = false, optional = true } log = "0.4" mail-builder = "0.4" -mail-parser = { version = "0.11", features = ["serde"], optional = true } +mail-parser = { version = "0.11", features = ["full_encoding", "serde"], optional = true } mime_guess = { version = "2", optional = true } open = "5" pimalaya-cli = { version = "0.0.1", default-features = false, features = ["terminal", "table", "prompt", "wizard", "imap", "smtp", "jmap", "spinner"] }