bump maildir version with windows support (#346)

This commit is contained in:
Clément DOUIN 2022-03-20 21:15:45 +01:00
parent b2cffd22f1
commit 87fc37729f
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
3 changed files with 5 additions and 3 deletions

View file

@ -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

4
Cargo.lock generated
View file

@ -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",

View file

@ -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 }