meli/melib/Cargo.toml

65 lines
1.9 KiB
TOML
Raw Normal View History

[package]
name = "melib"
2020-08-02 01:25:06 +03:00
version = "0.6.1"
authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
workspace = ".."
2019-06-18 21:13:58 +03:00
edition = "2018"
build = "build.rs"
homepage = "https://meli.delivery"
repository = "https://git.meli.delivery/meli/meli.git"
description = "backend mail client library"
keywords = ["mail", "mua", "maildir", "imap"]
categories = [ "email"]
license = "GPL-3.0-or-later"
[lib]
name = "melib"
path = "src/lib.rs"
[dependencies]
2018-08-06 14:58:54 +03:00
bitflags = "1.0"
crossbeam = "0.7.2"
2018-07-24 20:20:32 +03:00
data-encoding = "2.1.1"
encoding = "0.2.33"
memmap = { version = "0.5.2", optional = true }
nom = { version = "5.1.1" }
notify = { version = "4.0.1", optional = true }
2018-08-06 14:58:54 +03:00
xdg = "2.1.0"
2020-02-10 00:09:55 +02:00
native-tls = { version ="0.2.3", optional=true }
serde = { version = "1.0.71", features = ["rc", ] }
serde_derive = "1.0.71"
2019-09-26 18:25:30 +03:00
bincode = "1.2.0"
2020-05-29 15:52:18 +03:00
uuid = { version = "0.8.1", features = ["serde", "v4"] }
unicode-segmentation = { version = "1.2.1", optional = true }
2019-07-11 11:44:27 +03:00
libc = {version = "0.2.59", features = ["extra_traits",]}
2019-12-03 13:25:49 +02:00
reqwest = { version ="0.10.0-alpha.2", optional=true, features = ["json", "blocking" ]}
2019-12-04 19:42:31 +02:00
serde_json = { version = "1.0", optional = true, features = ["raw_value",] }
2020-07-24 20:13:18 +03:00
smallvec = { version = "^1.4.0", features = ["serde", ] }
2020-05-29 15:52:18 +03:00
nix = "0.17.0"
rusqlite = {version = "0.20.0", optional = true }
2020-06-03 17:06:24 +03:00
libloading = "0.6.2"
2020-06-22 11:29:36 +03:00
futures = "0.3.5"
smol = "0.1.18"
2020-06-28 15:39:33 +03:00
async-stream = "0.2.1"
2020-07-13 19:00:13 +03:00
base64 = { version = "0.12.3", optional = true }
flate2 = { version = "1.0.16", optional = true }
2020-02-26 14:18:00 +02:00
[features]
default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backend", "vcard", "sqlite3", "smtp", "deflate_compression"]
debug-tracing = []
unicode_algorithms = ["unicode-segmentation"]
imap_backend = ["native-tls"]
2020-06-22 19:20:38 +03:00
maildir_backend = ["notify", "memmap"]
mbox_backend = ["notify", "memmap"]
notmuch_backend = []
2019-12-03 13:25:49 +02:00
jmap_backend = ["reqwest", "serde_json" ]
vcard = []
2020-05-30 15:35:51 +03:00
sqlite3 = ["rusqlite", ]
2020-07-13 19:00:13 +03:00
smtp = ["native-tls", "base64"]
deflate_compression = ["flate2", ]