meli/Cargo.toml

58 lines
1.3 KiB
TOML
Raw Normal View History

[package]
2017-09-05 16:41:29 +03:00
name = "meli"
2019-12-08 11:36:38 +02:00
version = "0.4.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
2019-04-04 14:21:52 +03:00
edition = "2018"
[[bin]]
name = "meli"
path = "src/bin.rs"
[dependencies]
xdg = "2.1.0"
crossbeam = "0.7.2"
signal-hook = "0.1.12"
signal-hook-registry = "1.2.0"
2020-01-21 02:40:28 +02:00
nix = "0.16.1"
melib = { path = "melib", version = "0.4.1" }
serde = "1.0.71"
serde_derive = "1.0.71"
serde_json = "1.0"
toml = "0.5.3"
fnv = "1.0.3" # >:c
linkify = "0.3.1" # >:c
xdg-utils = "0.3.0"
nom = "3.2.0"
notify = "4.0.1" # >:c
notify-rust = "^3" # >:c
termion = "1.5.1"
bincode = "1.2.0"
uuid = { version = "0.7.4", features = ["serde", "v4"] }
unicode-segmentation = "1.2.1" # >:c
text_processing = { path = "text_processing", version = "0.4.1" }
libc = {version = "0.2.59", features = ["extra_traits",]}
rusqlite = {version = "0.20.0", optional =true }
rmp = "^0.8"
rmpv = { version = "^0.4.2", features=["with-serde",] }
rmp-serde = "^0.14.0"
smallvec = { version = "1.1.0", features = ["serde", ] }
2017-09-01 15:24:32 +03:00
[profile.release]
lto = true
2019-06-10 22:15:42 +03:00
debug = false
2018-09-22 16:53:25 +03:00
[workspace]
members = ["melib", "testing", "text_processing"]
[features]
default = ["sqlite3"]
notmuch = ["melib/notmuch_backend", ]
jmap = ["melib/jmap_backend",]
sqlite3 = ["rusqlite"]
# Print tracing logs as meli runs in stderr
# enable for debug tracing logs: build with --features=debug-tracing
debug-tracing = ["melib/debug-tracing", ]