mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 11:00:19 +00:00
update changelog
This commit is contained in:
parent
072f488d89
commit
9cf5003697
3 changed files with 11 additions and 5 deletions
|
@ -34,6 +34,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
synchronization. They can be repeated `-x folder1 folder2` or `-x
|
synchronization. They can be repeated `-x folder1 folder2` or `-x
|
||||||
folder1 -F folder2`.
|
folder1 -F folder2`.
|
||||||
|
|
||||||
|
- Added cargo features `native-tls` (default), `rustls-tls` and
|
||||||
|
`rustls-native-certs`.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Made global options truly global, which means they can be used
|
- Made global options truly global, which means they can be used
|
||||||
|
@ -42,6 +45,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Replaced reply all `-a` argument with `-A` because it conflicted
|
- Replaced reply all `-a` argument with `-A` because it conflicted
|
||||||
with the global option `-a|--account`.
|
with the global option `-a|--account`.
|
||||||
- Replaced `himalaya-lib` by `pimalaya-email`.
|
- Replaced `himalaya-lib` by `pimalaya-email`.
|
||||||
|
- Renamed feature `vendored` to `native-tls-vendored`.
|
||||||
|
- Removed the `develop` branch, all the development is now done on the
|
||||||
|
`master` branch.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1509,6 +1509,8 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "pimalaya-email"
|
name = "pimalaya-email"
|
||||||
version = "0.6.0"
|
version = "0.6.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "15171f3839bb7b7938f78b0c43902247d7f1e80befccd63f6cab93ac55613405"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ammonia",
|
"ammonia",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
|
|
@ -11,9 +11,8 @@ homepage = "https://pimalaya.org/himalaya/"
|
||||||
documentation = "https://pimalaya.org/himalaya/"
|
documentation = "https://pimalaya.org/himalaya/"
|
||||||
repository = "https://github.com/soywod/himalaya"
|
repository = "https://github.com/soywod/himalaya"
|
||||||
|
|
||||||
[package.metadata.deb]
|
[package.metadata.docs.rs]
|
||||||
priority = "optional"
|
all-features = true
|
||||||
section = "mail"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["imap-backend", "smtp-sender", "native-tls"]
|
default = ["imap-backend", "smtp-sender", "native-tls"]
|
||||||
|
@ -49,8 +48,7 @@ dialoguer = "0.10.2"
|
||||||
email_address = "0.2.4"
|
email_address = "0.2.4"
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
erased-serde = "0.3"
|
erased-serde = "0.3"
|
||||||
# pimalaya-email = { git = "https://git.sr.ht/~soywod/pimalaya/email" }
|
pimalaya-email = "0.6.0"
|
||||||
pimalaya-email = { path = "/home/soywod/sourcehut/pimalaya/email" }
|
|
||||||
indicatif = "0.17"
|
indicatif = "0.17"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
|
|
Loading…
Reference in a new issue