niax / rust-email

Implementation of MIME Messages for Rust
MIT License
62 stars 34 forks source link

Update dependencies #54

Closed haudan closed 4 years ago

haudan commented 4 years ago

Updates all crate dependencies to the latest version, as well as dev-dependencies.

Two code changes were necessary:

  1. build.rs: Due to a new API in version_check, the if condition had to be updated.
  2. src/mimeheader.rs: Since the base64::MIME config was removed with version 0.10.0, I had to roll my own exclude-non-base64-bytes logic, in order to follow RFC 2045. Thankfully this was trivial.

No API breaking changes present.