Upgrade sendgrid-rs from 0.12.1 to 0.13.0 (#30)

* Bump sendgrid from 0.12.1 to 0.13.0

Bumps [sendgrid](https://github.com/gsquire/sendgrid-rs) from 0.12.1 to 0.13.0.
- [Release notes](https://github.com/gsquire/sendgrid-rs/releases)
- [Commits](https://github.com/gsquire/sendgrid-rs/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Use the ? formatting option to use the Debug rather than Display trait

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
This commit is contained in:
Dave Gallant
2020-10-04 16:39:38 -04:00
committed by GitHub
parent fbca4e859e
commit 90b709a6a1
3 changed files with 192 additions and 196 deletions

View File

@@ -50,6 +50,6 @@ pub fn send(topic: &Topic, posts: &Posts, expression: &str, config: &Config) {
match sg.send(mail_info) {
Err(err) => println!("SendGrid failed to send mail. Error: {}", err),
Ok(body) => println!("SendGrid Response: {}", body),
Ok(body) => println!("SendGrid Response: {:?}", body),
};
}