From 9cf5003697d0a934302b1e12175451640ce2aebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Tue, 25 Apr 2023 09:39:49 +0200 Subject: [PATCH] update changelog --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 ++ Cargo.toml | 8 +++----- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d667a1e..1349cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 folder1 -F folder2`. +- Added cargo features `native-tls` (default), `rustls-tls` and + `rustls-native-certs`. + ### Changed - 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 with the global option `-a|--account`. - 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 diff --git a/Cargo.lock b/Cargo.lock index ba17388..bc7deeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1509,6 +1509,8 @@ dependencies = [ [[package]] name = "pimalaya-email" version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15171f3839bb7b7938f78b0c43902247d7f1e80befccd63f6cab93ac55613405" dependencies = [ "ammonia", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 21f5b04..edccaae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,8 @@ homepage = "https://pimalaya.org/himalaya/" documentation = "https://pimalaya.org/himalaya/" repository = "https://github.com/soywod/himalaya" -[package.metadata.deb] -priority = "optional" -section = "mail" +[package.metadata.docs.rs] +all-features = true [features] default = ["imap-backend", "smtp-sender", "native-tls"] @@ -49,8 +48,7 @@ dialoguer = "0.10.2" email_address = "0.2.4" env_logger = "0.8" erased-serde = "0.3" -# pimalaya-email = { git = "https://git.sr.ht/~soywod/pimalaya/email" } -pimalaya-email = { path = "/home/soywod/sourcehut/pimalaya/email" } +pimalaya-email = "0.6.0" indicatif = "0.17" log = "0.4" once_cell = "1.16.0"