mirror of
https://github.com/pimalaya/himalaya.git
synced 2024-12-09 21:18:39 +03:00
82 lines
3.0 KiB
TOML
82 lines
3.0 KiB
TOML
[package]
|
|
name = "himalaya"
|
|
description = "CLI to manage emails"
|
|
version = "1.0.0"
|
|
authors = ["soywod <clement.douin@posteo.net>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
categories = ["command-line-utilities", "email"]
|
|
keywords = ["cli", "email", "imap", "maildir", "smtp"]
|
|
homepage = "https://pimalaya.org/"
|
|
documentation = "https://github.com/pimalaya/himalaya/"
|
|
repository = "https://github.com/pimalaya/himalaya/"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["imap", "maildir", "smtp", "sendmail", "oauth2", "wizard", "pgp-commands", "pgp-native"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
# [features]
|
|
# default = [
|
|
# "imap",
|
|
# "maildir",
|
|
# #"notmuch",
|
|
# "smtp",
|
|
# #"sendmail",
|
|
# #"keyring",
|
|
# #"oauth2",
|
|
# "wizard",
|
|
# #"pgp-commands",
|
|
# #"pgp-gpg",
|
|
# #"pgp-native",
|
|
# ]
|
|
|
|
# imap = ["email-lib/imap", "pimalaya-tui/imap"]
|
|
# maildir = ["email-lib/maildir", "pimalaya-tui/maildir"]
|
|
# notmuch = ["email-lib/notmuch", "pimalaya-tui/notmuch"]
|
|
# smtp = ["email-lib/smtp", "pimalaya-tui/smtp"]
|
|
# sendmail = ["email-lib/sendmail", "pimalaya-tui/sendmail"]
|
|
|
|
# keyring = ["email-lib/keyring", "pimalaya-tui/keyring", "secret-lib/keyring"]
|
|
# oauth2 = ["email-lib/oauth2", "pimalaya-tui/oauth2", "keyring"]
|
|
# wizard = ["email-lib/autoconfig", "pimalaya-tui/wizard"]
|
|
|
|
# pgp = []
|
|
# pgp-commands = ["email-lib/pgp-commands", "mml-lib/pgp-commands", "pimalaya-tui/pgp-commands", "pgp"]
|
|
# pgp-gpg = ["email-lib/pgp-gpg", "mml-lib/pgp-gpg", "pimalaya-tui/pgp-gpg", "pgp"]
|
|
# pgp-native = ["email-lib/pgp-native", "mml-lib/pgp-native", "pimalaya-tui/pgp-native", "pgp"]
|
|
|
|
# [build-dependencies]
|
|
# git2 = { version = "0.19", default-features = false }
|
|
# serde = { version = "1", features = ["derive"] }
|
|
# toml = "0.8"
|
|
|
|
[dependencies]
|
|
rustls-platform-verifier = "0.4.0"
|
|
# ariadne = "0.2"
|
|
# clap = { version = "4.4", features = ["derive", "env", "wrap_help"] }
|
|
# clap_complete = "4.4"
|
|
# clap_mangen = "0.2"
|
|
# color-eyre = "0.6"
|
|
# email-lib = { version = "=0.26", default-features = false, features = ["tokio-rustls", "derive", "thread"] }
|
|
# mail-builder = "0.3"
|
|
# mml-lib = { version = "1", default-features = false, features = ["compiler", "interpreter", "derive"] }
|
|
# once_cell = "1.16"
|
|
# pimalaya-tui = { version = "=0.1", default-features = false, features = ["email", "path", "cli", "himalaya", "tracing", "sled"] }
|
|
# secret-lib = { version = "1", default-features = false, features = ["tokio", "rustls", "command", "derive"] }
|
|
# serde = { version = "1", features = ["derive"] }
|
|
# serde_json = "1"
|
|
# shellexpand-utils = "=0.2.1"
|
|
# tokio = { version = "1.23", default-features = false, features = ["macros", "rt-multi-thread"] }
|
|
# toml = "0.8"
|
|
# tracing = "0.1"
|
|
# url = "2.2"
|
|
# uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
# [patch.crates-io]
|
|
# email-lib = { git = "https://github.com/pimalaya/core" }
|
|
# mml-lib = { git = "https://github.com/pimalaya/core" }
|
|
# oauth-lib = { git = "https://github.com/pimalaya/core" }
|
|
# pimalaya-tui = { git = "https://github.com/pimalaya/tui" }
|
|
# process-lib = { git = "https://github.com/pimalaya/core" }
|
|
# secret-lib = { git = "https://github.com/pimalaya/core" }
|