2018-07-20 09:15:06 +00:00
|
|
|
[package]
|
|
|
|
name = "melib"
|
2020-09-24 09:19:45 +00:00
|
|
|
version = "0.6.2"
|
2020-02-04 15:26:25 +00:00
|
|
|
authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
|
2018-07-20 09:15:06 +00:00
|
|
|
workspace = ".."
|
2019-06-18 18:13:58 +00:00
|
|
|
edition = "2018"
|
2019-11-14 15:55:06 +00:00
|
|
|
build = "build.rs"
|
2018-07-20 09:15:06 +00:00
|
|
|
|
2020-02-04 15:26:25 +00:00
|
|
|
homepage = "https://meli.delivery"
|
|
|
|
repository = "https://git.meli.delivery/meli/meli.git"
|
2020-09-24 13:51:51 +00:00
|
|
|
description = "mail library"
|
|
|
|
keywords = ["mail", "mua", "maildir", "imap", "jmap"]
|
|
|
|
categories = [ "email", "parser-implementations"]
|
2020-02-04 15:26:25 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2020-09-24 13:51:51 +00:00
|
|
|
readme = "README.md"
|
2020-02-04 15:26:25 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "melib"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
2018-07-20 09:15:06 +00:00
|
|
|
[dependencies]
|
2018-08-06 11:58:54 +00:00
|
|
|
bitflags = "1.0"
|
2019-09-09 09:53:39 +00:00
|
|
|
crossbeam = "0.7.2"
|
2018-07-24 17:20:32 +00:00
|
|
|
data-encoding = "2.1.1"
|
2018-07-20 09:15:06 +00:00
|
|
|
encoding = "0.2.33"
|
2019-09-21 18:23:06 +00:00
|
|
|
memmap = { version = "0.5.2", optional = true }
|
2020-06-06 16:38:20 +00:00
|
|
|
nom = { version = "5.1.1" }
|
|
|
|
|
2020-08-18 09:20:23 +00:00
|
|
|
indexmap = { version = "^1.5", features = ["serde-1", ] }
|
2020-08-26 16:13:18 +00:00
|
|
|
notify = { version = "4.0.15", optional = true }
|
2018-08-06 11:58:54 +00:00
|
|
|
xdg = "2.1.0"
|
2020-02-09 22:09:55 +00:00
|
|
|
native-tls = { version ="0.2.3", optional=true }
|
2019-11-02 10:14:31 +00:00
|
|
|
serde = { version = "1.0.71", features = ["rc", ] }
|
2018-08-13 06:25:48 +00:00
|
|
|
serde_derive = "1.0.71"
|
2019-09-26 15:25:30 +00:00
|
|
|
bincode = "1.2.0"
|
2020-08-25 16:12:55 +00:00
|
|
|
uuid = { version = "0.8.1", features = ["serde", "v4", "v5"] }
|
2020-02-04 15:26:25 +00:00
|
|
|
|
|
|
|
unicode-segmentation = { version = "1.2.1", optional = true }
|
2019-07-11 08:44:27 +00:00
|
|
|
libc = {version = "0.2.59", features = ["extra_traits",]}
|
2020-08-07 10:51:44 +00:00
|
|
|
isahc = { version = "0.9.7", optional = true, default-features = false, features = ["http2", "json", "text-decoding"]}
|
2019-12-04 17:42:31 +00:00
|
|
|
serde_json = { version = "1.0", optional = true, features = ["raw_value",] }
|
2020-07-24 17:13:18 +00:00
|
|
|
smallvec = { version = "^1.4.0", features = ["serde", ] }
|
2020-05-29 12:52:18 +00:00
|
|
|
nix = "0.17.0"
|
2020-08-27 21:24:43 +00:00
|
|
|
rusqlite = {version = "0.24.0", optional = true }
|
2019-09-21 18:23:06 +00:00
|
|
|
|
2020-06-03 14:06:24 +00:00
|
|
|
libloading = "0.6.2"
|
2020-06-22 08:29:36 +00:00
|
|
|
futures = "0.3.5"
|
2020-09-18 10:49:09 +00:00
|
|
|
smol = "1.0.0"
|
2020-06-28 12:39:33 +00:00
|
|
|
async-stream = "0.2.1"
|
2020-07-13 16:00:13 +00:00
|
|
|
base64 = { version = "0.12.3", optional = true }
|
2020-07-28 13:16:08 +00:00
|
|
|
flate2 = { version = "1.0.16", optional = true }
|
2020-09-16 16:57:06 +00:00
|
|
|
xdg-utils = "0.3.0"
|
2020-02-26 12:18:00 +00:00
|
|
|
|
2019-09-21 18:23:06 +00:00
|
|
|
[features]
|
2020-07-28 13:16:08 +00:00
|
|
|
default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backend", "vcard", "sqlite3", "smtp", "deflate_compression"]
|
2019-09-21 18:23:06 +00:00
|
|
|
|
2019-09-23 06:36:46 +00:00
|
|
|
debug-tracing = []
|
2020-08-07 10:51:44 +00:00
|
|
|
deflate_compression = ["flate2", ]
|
2020-10-05 15:43:08 +00:00
|
|
|
gpgme = []
|
2020-08-07 10:51:44 +00:00
|
|
|
http = ["isahc"]
|
|
|
|
http-static = ["isahc", "isahc/static-curl"]
|
2020-08-15 10:37:30 +00:00
|
|
|
imap_backend = ["tls"]
|
2020-08-07 10:51:44 +00:00
|
|
|
jmap_backend = ["http", "serde_json"]
|
2020-06-22 16:20:38 +00:00
|
|
|
maildir_backend = ["notify", "memmap"]
|
|
|
|
mbox_backend = ["notify", "memmap"]
|
2019-11-14 15:55:06 +00:00
|
|
|
notmuch_backend = []
|
2020-08-15 10:37:30 +00:00
|
|
|
smtp = ["tls", "base64"]
|
2020-08-07 10:51:44 +00:00
|
|
|
sqlite3 = ["rusqlite", ]
|
2020-10-05 15:43:08 +00:00
|
|
|
tls = ["native-tls"]
|
2020-08-07 10:51:44 +00:00
|
|
|
unicode_algorithms = ["unicode-segmentation"]
|
|
|
|
vcard = []
|