[package] name = "melib" version = "0.4.1" authors = ["Manos Pitsidianakis "] workspace = ".." edition = "2018" build = "build.rs" [dependencies] bitflags = "1.0" chrono = { version = "0.4", features = ["serde"] } 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", 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"] } text_processing = { path = "../text_processing", version = "*", optional= true } 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 = []