meli/melib/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "melib"
2019-12-08 11:36:38 +02:00
version = "0.4.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
2019-06-18 21:13:58 +03:00
edition = "2018"
build = "build.rs"
[dependencies]
2018-08-06 14:58:54 +03:00
bitflags = "1.0"
2019-02-15 09:06:42 +02:00
chrono = { version = "0.4", features = ["serde"] }
crossbeam = "0.7.2"
2018-07-24 20:20:32 +03:00
data-encoding = "2.1.1"
encoding = "0.2.33"
2018-08-06 14:58:54 +03:00
fnv = "1.0.3"
memmap = { version = "0.5.2", optional = true }
2018-08-06 14:58:54 +03:00
nom = "3.2.0"
notify = { version = "4.0.1", optional = true }
notify-rust = { version = "^3", optional = true }
termion = "1.5.1"
2018-08-06 14:58:54 +03:00
xdg = "2.1.0"
native-tls = { version ="0.2", 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"
2019-10-20 11:02:03 +03:00
uuid = { version = "0.7.4", features = ["serde", "v4"] }
text_processing = { path = "../text_processing", version = "*", optional= true }
2019-07-11 11:44:27 +03:00
libc = {version = "0.2.59", features = ["extra_traits",]}
[features]
default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backend", "vcard"]
debug-tracing = []
unicode_algorithms = ["text_processing"]
imap_backend = ["native-tls"]
maildir_backend = ["notify", "notify-rust", "memmap"]
mbox_backend = ["notify", "notify-rust", "memmap"]
notmuch_backend = []
vcard = []