2018-07-20 09:15:06 +00:00
|
|
|
[package]
|
|
|
|
name = "melib"
|
2019-09-28 09:25:44 +00:00
|
|
|
version = "0.3.2"
|
2019-06-10 14:28:43 +00:00
|
|
|
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
|
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
|
|
|
|
|
|
|
[dependencies]
|
2018-08-06 11:58:54 +00:00
|
|
|
bitflags = "1.0"
|
2019-02-15 07:06:42 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
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"
|
2018-08-06 11:58:54 +00:00
|
|
|
fnv = "1.0.3"
|
2019-09-21 18:23:06 +00:00
|
|
|
memmap = { version = "0.5.2", optional = true }
|
2018-08-06 11:58:54 +00:00
|
|
|
nom = "3.2.0"
|
2019-09-21 18:23:06 +00:00
|
|
|
notify = { version = "4.0.1", optional = true }
|
|
|
|
notify-rust = { version = "^3", optional = true }
|
2018-07-20 09:15:06 +00:00
|
|
|
termion = "1.5.1"
|
2018-08-06 11:58:54 +00:00
|
|
|
xdg = "2.1.0"
|
2019-09-21 18:23:06 +00:00
|
|
|
native-tls = { version ="0.2", 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"
|
2019-10-20 08:02:03 +00:00
|
|
|
uuid = { version = "0.7.4", features = ["serde", "v4"] }
|
2019-09-21 18:23:06 +00:00
|
|
|
text_processing = { path = "../text_processing", version = "*", optional= true }
|
2019-07-11 08:44:27 +00:00
|
|
|
libc = {version = "0.2.59", features = ["extra_traits",]}
|
2019-09-21 18:23:06 +00:00
|
|
|
|
|
|
|
[features]
|
2019-10-16 11:55:49 +00:00
|
|
|
default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backend", "vcard"]
|
2019-09-21 18:23:06 +00:00
|
|
|
|
2019-09-23 06:36:46 +00:00
|
|
|
debug-tracing = []
|
2019-09-21 18:23:06 +00:00
|
|
|
unicode_algorithms = ["text_processing"]
|
|
|
|
imap_backend = ["native-tls"]
|
|
|
|
maildir_backend = ["notify", "notify-rust", "memmap"]
|
|
|
|
mbox_backend = ["notify", "notify-rust", "memmap"]
|
2019-11-14 15:55:06 +00:00
|
|
|
notmuch_backend = []
|
2019-10-16 11:55:49 +00:00
|
|
|
vcard = []
|