mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-01 15:40:27 +00:00
58 lines
1.7 KiB
TOML
58 lines
1.7 KiB
TOML
[package]
|
|
name = "melib"
|
|
version = "0.5.0"
|
|
authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
|
|
workspace = ".."
|
|
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]
|
|
bitflags = "1.0"
|
|
crossbeam = "0.7.2"
|
|
data-encoding = "2.1.1"
|
|
encoding = "0.2.33"
|
|
fnv = "1.0.3"
|
|
memmap = { version = "0.5.2", optional = true }
|
|
nom = "3.2.0"
|
|
notify = { version = "4.0.1", optional = true }
|
|
notify-rust = { version = "^3", optional = true }
|
|
termion = "1.5.1"
|
|
xdg = "2.1.0"
|
|
native-tls = { version ="0.2.3", optional=true }
|
|
serde = { version = "1.0.71", features = ["rc", ] }
|
|
serde_derive = "1.0.71"
|
|
bincode = "1.2.0"
|
|
uuid = { version = "0.7.4", features = ["serde", "v4"] }
|
|
|
|
unicode-segmentation = { version = "1.2.1", optional = true }
|
|
libc = {version = "0.2.59", features = ["extra_traits",]}
|
|
reqwest = { version ="0.10.0-alpha.2", optional=true, features = ["json", "blocking" ]}
|
|
serde_json = { version = "1.0", optional = true, features = ["raw_value",] }
|
|
smallvec = { version = "1.1.0", features = ["serde", ] }
|
|
nix = "0.16.1"
|
|
|
|
libloading = "0.5.2"
|
|
|
|
[features]
|
|
default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backend", "vcard"]
|
|
|
|
debug-tracing = []
|
|
unicode_algorithms = ["unicode-segmentation"]
|
|
imap_backend = ["native-tls"]
|
|
maildir_backend = ["notify", "notify-rust", "memmap"]
|
|
mbox_backend = ["notify", "notify-rust", "memmap"]
|
|
notmuch_backend = []
|
|
jmap_backend = ["reqwest", "serde_json" ]
|
|
vcard = []
|