2022-09-22 14:38:38 +00:00
|
|
|
[package]
|
|
|
|
name = "himalaya"
|
2023-12-10 21:01:49 +00:00
|
|
|
description = "CLI to manage emails"
|
2024-08-09 10:03:23 +00:00
|
|
|
version = "1.0.0"
|
2022-09-22 14:38:38 +00:00
|
|
|
authors = ["soywod <clement.douin@posteo.net>"]
|
|
|
|
edition = "2021"
|
2022-10-10 16:06:13 +00:00
|
|
|
license = "MIT"
|
2024-08-09 10:03:23 +00:00
|
|
|
categories = ["command-line-utilities", "email"]
|
|
|
|
keywords = ["cli", "email", "imap", "maildir", "smtp"]
|
2024-01-09 08:28:45 +00:00
|
|
|
homepage = "https://pimalaya.org/"
|
2023-12-12 14:24:59 +00:00
|
|
|
documentation = "https://pimalaya.org/himalaya/cli/latest/"
|
2023-08-28 07:04:13 +00:00
|
|
|
repository = "https://github.com/soywod/himalaya/"
|
2023-12-04 21:26:49 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
2024-03-16 21:20:19 +00:00
|
|
|
rustdoc-args = ["--cfg", "docsrs", "--document-private-items"]
|
2022-09-22 14:38:38 +00:00
|
|
|
|
|
|
|
[features]
|
2023-09-25 13:32:29 +00:00
|
|
|
default = [
|
2023-12-04 21:26:49 +00:00
|
|
|
"imap",
|
2024-01-07 22:48:45 +00:00
|
|
|
"maildir",
|
2023-12-04 21:26:49 +00:00
|
|
|
# "notmuch",
|
|
|
|
"smtp",
|
|
|
|
"sendmail",
|
2024-01-09 08:28:45 +00:00
|
|
|
|
2024-08-09 10:03:23 +00:00
|
|
|
"wizard",
|
|
|
|
# "keyring",
|
|
|
|
# "oauth2",
|
2024-01-09 08:28:45 +00:00
|
|
|
|
2024-01-12 09:16:43 +00:00
|
|
|
# "pgp-commands",
|
|
|
|
# "pgp-gpg",
|
2023-09-25 13:32:29 +00:00
|
|
|
# "pgp-native",
|
|
|
|
]
|
2024-01-09 08:28:45 +00:00
|
|
|
|
2023-12-04 21:26:49 +00:00
|
|
|
imap = ["email-lib/imap"]
|
2024-01-07 22:48:45 +00:00
|
|
|
maildir = ["email-lib/maildir"]
|
2023-12-04 21:26:49 +00:00
|
|
|
notmuch = ["email-lib/notmuch"]
|
|
|
|
smtp = ["email-lib/smtp"]
|
|
|
|
sendmail = ["email-lib/sendmail"]
|
2024-01-09 08:28:45 +00:00
|
|
|
|
2024-08-09 10:03:23 +00:00
|
|
|
keyring = ["email-lib/keyring", "secret-lib?/keyring-tokio"]
|
2024-08-24 09:52:13 +00:00
|
|
|
oauth2 = ["dep:oauth-lib", "email-lib/oauth2", "keyring"]
|
2024-08-27 04:57:47 +00:00
|
|
|
wizard = ["dep:secret-lib", "dep:toml_edit", "email-lib/autoconfig"]
|
2024-01-09 08:28:45 +00:00
|
|
|
|
2023-09-25 13:32:29 +00:00
|
|
|
pgp = []
|
2024-01-07 22:48:45 +00:00
|
|
|
pgp-commands = ["email-lib/pgp-commands", "mml-lib/pgp-commands", "pgp"]
|
|
|
|
pgp-gpg = ["email-lib/pgp-gpg", "mml-lib/pgp-gpg", "pgp"]
|
|
|
|
pgp-native = ["email-lib/pgp-native", "mml-lib/pgp-native", "pgp"]
|
2023-08-28 07:04:13 +00:00
|
|
|
|
2023-12-10 21:01:49 +00:00
|
|
|
[dependencies]
|
2024-02-28 08:09:03 +00:00
|
|
|
ariadne = "0.2"
|
2023-12-10 21:01:49 +00:00
|
|
|
async-trait = "0.1"
|
2024-08-09 10:03:23 +00:00
|
|
|
clap = { version = "4.4", features = ["derive", "env", "wrap_help"] }
|
2023-12-10 21:01:49 +00:00
|
|
|
clap_complete = "4.4"
|
|
|
|
clap_mangen = "0.2"
|
2024-04-14 20:40:46 +00:00
|
|
|
color-eyre = "0.6.3"
|
2024-05-07 09:50:25 +00:00
|
|
|
comfy-table = "7.1.1"
|
2023-12-10 21:01:49 +00:00
|
|
|
console = "0.15.2"
|
2024-08-20 08:53:21 +00:00
|
|
|
crossterm = { version = "0.27", features = ["serde"] }
|
2024-02-25 08:07:40 +00:00
|
|
|
dirs = "4"
|
2024-08-16 12:29:02 +00:00
|
|
|
email-lib = { version = "=0.25.0", default-features = false, features = ["derive", "thread", "tracing"] }
|
2023-12-10 21:01:49 +00:00
|
|
|
email_address = "0.2.4"
|
|
|
|
erased-serde = "0.3"
|
|
|
|
indicatif = "0.17"
|
2024-04-26 19:06:29 +00:00
|
|
|
inquire = "0.7.4"
|
2023-12-10 21:01:49 +00:00
|
|
|
mail-builder = "0.3"
|
2024-02-25 08:07:40 +00:00
|
|
|
md5 = "0.7"
|
2024-08-16 12:29:02 +00:00
|
|
|
mml-lib = { version = "=1.0.14", default-features = false, features = ["derive"] }
|
2024-08-09 10:03:23 +00:00
|
|
|
oauth-lib = { version = "=0.1.1", optional = true }
|
2023-12-10 21:01:49 +00:00
|
|
|
once_cell = "1.16"
|
2024-05-17 21:22:06 +00:00
|
|
|
petgraph = "0.6"
|
2024-04-07 09:42:34 +00:00
|
|
|
process-lib = { version = "=0.4.2", features = ["derive"] }
|
2024-08-16 12:29:02 +00:00
|
|
|
secret-lib = { version = "=0.4.6", default-features = false, features = ["command", "derive"], optional = true }
|
2024-03-16 21:20:19 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde-toml-merge = "0.3"
|
2024-02-25 08:07:40 +00:00
|
|
|
serde_json = "1"
|
2024-04-07 09:42:34 +00:00
|
|
|
shellexpand-utils = "=0.2.1"
|
2024-02-24 08:37:55 +00:00
|
|
|
sled = "=0.34.7"
|
2023-12-10 21:01:49 +00:00
|
|
|
terminal_size = "0.1"
|
|
|
|
tokio = { version = "1.23", default-features = false, features = ["macros", "rt-multi-thread"] }
|
2024-03-16 21:20:19 +00:00
|
|
|
toml = "0.8"
|
2024-08-27 04:57:47 +00:00
|
|
|
toml_edit = { version = "0.22", optional = true }
|
2024-04-14 20:40:46 +00:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2023-12-10 21:01:49 +00:00
|
|
|
unicode-width = "0.1"
|
|
|
|
url = "2.2"
|
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2024-05-14 16:19:39 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2024-08-27 04:57:47 +00:00
|
|
|
oauth-lib = { git = "https://github.com/pimalaya/core" }
|
|
|
|
imap-codec = { git = "https://github.com/duesee/imap-codec" }
|
2024-08-25 06:14:47 +00:00
|
|
|
imap-next = { git = "https://github.com/duesee/imap-next", branch = "jakoschiko_poison-message-with-fragmentizer" }
|
2024-08-27 04:57:47 +00:00
|
|
|
imap-client = { git = "https://github.com/pimalaya/imap-client" }
|
|
|
|
email-lib = { git = "https://github.com/pimalaya/core" }
|