mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
71 lines
1.8 KiB
TOML
71 lines
1.8 KiB
TOML
[package]
|
|
name = "himalaya"
|
|
description = "CLI to manage your emails."
|
|
version = "0.8.3"
|
|
authors = ["soywod <clement.douin@posteo.net>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
categories = ["command-line-interface", "command-line-utilities", "email"]
|
|
keywords = ["cli", "mail", "email", "client", "imap"]
|
|
homepage = "https://pimalaya.org/himalaya/"
|
|
documentation = "https://pimalaya.org/himalaya/"
|
|
repository = "https://github.com/soywod/himalaya"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
default = ["imap-backend", "smtp-sender"]
|
|
|
|
# backends
|
|
imap-backend = ["pimalaya-email/imap-backend"]
|
|
notmuch-backend = ["pimalaya-email/notmuch-backend"]
|
|
|
|
# senders
|
|
smtp-sender = ["pimalaya-email/smtp-sender"]
|
|
|
|
[dev-dependencies]
|
|
async-trait = "0.1"
|
|
tempfile = "3.3"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
atty = "0.2"
|
|
chrono = "0.4.24"
|
|
clap = "4.0"
|
|
clap_complete = "4.0"
|
|
clap_mangen = "0.2"
|
|
console = "0.15.2"
|
|
dialoguer = "0.10.2"
|
|
dirs = "4.0.0"
|
|
email_address = "0.2.4"
|
|
env_logger = "0.8"
|
|
erased-serde = "0.3"
|
|
indicatif = "0.17"
|
|
log = "0.4"
|
|
md5 = "0.7.0"
|
|
once_cell = "1.16.0"
|
|
pimalaya-email = "=0.14.0"
|
|
pimalaya-keyring = "=0.0.5"
|
|
pimalaya-oauth2 = "=0.0.3"
|
|
pimalaya-process = "=0.0.5"
|
|
pimalaya-secret = "=0.0.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
shellexpand = "2.1"
|
|
termcolor = "1.1"
|
|
terminal_size = "0.1"
|
|
tokio = { version = "1.23", default-features = false, features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.7.4"
|
|
toml_edit = "0.19.8"
|
|
unicode-width = "0.1"
|
|
url = "2.2"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
|
|
[target.'cfg(target_env = "musl")'.dependencies]
|
|
rusqlite = { version = "0.29", features = [] }
|
|
[target.'cfg(not(target_env = "musl"))'.dependencies]
|
|
rusqlite = { version = "0.29", features = ["bundled"] }
|
|
|
|
[target.'cfg(not(target_env = "windows"))'.dependencies]
|
|
coredump = "=0.1.2"
|