From 87fc37729ff39f6849f79d545fd8caf05cfd8f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Sun, 20 Mar 2022 21:15:45 +0100 Subject: [PATCH] bump maildir version with windows support (#346) --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2b062d..0a2f1a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Flag commands [#334] +- Windows build [#346] ## [0.5.9] - 2022-03-12 @@ -513,3 +514,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#334]: https://github.com/soywod/himalaya/issues/334 [#335]: https://github.com/soywod/himalaya/issues/335 [#338]: https://github.com/soywod/himalaya/issues/338 +[#346]: https://github.com/soywod/himalaya/issues/346 diff --git a/Cargo.lock b/Cargo.lock index 4eb302d..db61fe6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -650,9 +650,9 @@ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" [[package]] name = "maildir" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c47481eb056f735997fe5248a94fe8d03816388858c990a52eb271c21b33ff3" +checksum = "f8e36818ad465a26adc92409158e147e74644f217e0fa77adec6a20c64ee45b5" dependencies = [ "gethostname", "mailparse", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c4010d9..46d8daa 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -53,6 +53,6 @@ uuid = { version = "0.8", features = ["v4"] } imap = { version = "=3.0.0-alpha.4", optional = true } imap-proto = { version = "0.14.3", optional = true } -maildir = { version = "0.6.0", optional = true } +maildir = { version = "0.6.1", optional = true } md5 = { version = "0.7.0", optional = true } notmuch = { version = "0.7.1", optional = true }