meli/Cargo.toml

91 lines
2.3 KiB
TOML
Raw Normal View History

[package]
2017-09-05 16:41:29 +03:00
name = "meli"
2021-10-15 12:36:37 +03:00
version = "0.7.2"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
2019-04-04 14:21:52 +03:00
edition = "2018"
2020-02-04 18:12:44 +02:00
license = "GPL-3.0-or-later"
2020-07-29 21:51:58 +03:00
readme = "README.md"
2020-02-04 18:12:44 +02:00
description = "terminal mail client"
homepage = "https://meli.delivery"
repository = "https://git.meli.delivery/meli/meli.git"
keywords = ["mail", "mua", "maildir", "terminal", "imap"]
categories = ["command-line-utilities", "email"]
2020-03-04 14:09:55 +02:00
default-run = "meli"
2020-02-04 18:12:44 +02:00
[[bin]]
name = "meli"
path = "src/bin.rs"
2020-08-02 01:25:06 +03:00
#[[bin]]
#name = "managesieve-meli"
#path = "src/managesieve.rs"
2020-03-04 14:09:55 +02:00
2020-07-24 20:13:18 +03:00
#[[bin]]
#name = "async"
#path = "src/async.rs"
[dependencies]
xdg = "2.1.0"
crossbeam = "0.7.2"
signal-hook = "0.1.12"
signal-hook-registry = "1.2.0"
2020-05-29 15:52:18 +03:00
nix = "0.17.0"
2021-10-15 12:36:37 +03:00
melib = { path = "melib", version = "0.7.2" }
serde = "1.0.71"
serde_derive = "1.0.71"
serde_json = "1.0"
toml = { version = "0.5.6", features = ["preserve_order", ] }
indexmap = { version = "^1.6", features = ["serde-1", ] }
2020-05-29 15:52:18 +03:00
linkify = "0.4.0"
notify = "4.0.1" # >:c
termion = "1.5.1"
2020-11-06 18:38:18 +02:00
bincode = "^1.3.0"
2020-05-29 15:52:18 +03:00
uuid = { version = "0.8.1", features = ["serde", "v4"] }
unicode-segmentation = "1.2.1" # >:c
libc = {version = "0.2.59", features = ["extra_traits",]}
smallvec = { version = "^1.5.0", features = ["serde", ] }
bitflags = "1.0"
pcre2 = { version = "0.2.3", optional = true }
structopt = { version = "0.3.14", default-features = false }
svg_crate = { version = "0.8.0", optional = true, package = "svg" }
2020-06-26 18:31:37 +03:00
futures = "0.3.5"
async-task = "3.0.0"
num_cpus = "1.12.0"
2020-10-17 20:50:29 +03:00
flate2 = { version = "1.0.16", optional = true }
[target.'cfg(target_os="linux")'.dependencies]
notify-rust = { version = "^4", optional = true }
2020-06-07 18:02:20 +03:00
[build-dependencies]
syn = { version = "1.0.31", features = [] }
quote = "^1.0"
proc-macro2 = "1.0.18"
2020-10-17 20:50:29 +03:00
flate2 = { version = "1.0.16", optional = true }
2017-09-01 15:24:32 +03:00
[profile.release]
2020-07-29 14:33:09 +03:00
lto = "fat"
2020-10-11 17:19:10 +03:00
codegen-units = 1
opt-level = "s"
2019-06-10 22:15:42 +03:00
debug = false
2018-09-22 16:53:25 +03:00
[workspace]
members = ["melib", "tools", ]
[features]
2020-10-05 18:43:08 +03:00
default = ["sqlite3", "notmuch", "regexp", "smtp", "dbus-notifications", "gpgme"]
notmuch = ["melib/notmuch_backend", ]
jmap = ["melib/jmap_backend",]
2020-05-30 15:35:51 +03:00
sqlite3 = ["melib/sqlite3"]
smtp = ["melib/smtp"]
regexp = ["pcre2"]
dbus-notifications = ["notify-rust",]
2020-10-17 20:50:29 +03:00
cli-docs = ["flate2"]
svgscreenshot = ["svg_crate"]
2020-10-05 18:43:08 +03:00
gpgme = ["melib/gpgme"]
# Print tracing logs as meli runs in stderr
# enable for debug tracing logs: build with --features=debug-tracing
debug-tracing = ["melib/debug-tracing", ]