meli/ui/Cargo.toml

42 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "ui"
2019-12-08 09:36:38 +00:00
version = "0.4.1"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
2019-06-18 18:13:58 +00:00
edition = "2018"
[dependencies]
xdg = "2.1.0" # >:c
2018-08-19 10:12:48 +00:00
serde = "1.0.71"
serde_derive = "1.0.71"
2019-03-04 10:03:39 +00:00
serde_json = "1.0"
toml = "0.5.3"
crossbeam = "0.7.2"
fnv = "1.0.3" # >:c
linkify = "0.3.1" # >:c
2018-08-06 11:58:54 +00:00
melib = { path = "../melib", version = "*" }
2019-08-01 09:28:36 +00:00
mime_apps = { git = "https://git.meli.delivery/meli/mime_apps", version = "^0.2.0" }
2018-08-06 11:58:54 +00:00
nom = "3.2.0"
notify = "4.0.1" # >:c
notify-rust = "^3" # >:c
2018-08-06 11:58:54 +00:00
termion = "1.5.1"
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"] }
unicode-segmentation = "1.2.1" # >:c
2019-07-22 12:14:39 +00:00
text_processing = { path = "../text_processing", version = "*" }
2019-07-11 08:44:27 +00:00
libc = {version = "0.2.59", features = ["extra_traits",]}
2020-01-21 00:40:28 +00:00
nix = "0.16.1"
2019-10-07 13:42:44 +00:00
rusqlite = {version = "0.20.0", optional =true }
2019-12-23 15:08:57 +00:00
rmp = "^0.8"
2019-12-27 13:20:02 +00:00
rmpv = { version = "^0.4.2", features=["with-serde",] }
2019-12-23 15:08:57 +00:00
rmp-serde = "^0.14.0"
smallvec = { version = "1.1.0", features = ["serde", ] }
[features]
2019-10-07 13:42:44 +00:00
default = ["sqlite3"]
notmuch = []
2019-10-07 13:42:44 +00:00
sqlite3 = ["rusqlite"]
# Print tracing logs as meli runs
debug-tracing = []