meli/ui/Cargo.toml

37 lines
926 B
TOML
Raw Permalink Normal View History

[package]
name = "ui"
2019-09-28 12:25:44 +03:00
version = "0.3.2"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
workspace = ".."
2019-06-18 21:13:58 +03:00
edition = "2018"
[dependencies]
xdg = "2.1.0" # >:c
2018-08-19 13:12:48 +03:00
serde = "1.0.71"
serde_derive = "1.0.71"
2019-03-04 12:03:39 +02: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 14:58:54 +03:00
melib = { path = "../melib", version = "*" }
2019-08-01 12:28:36 +03:00
mime_apps = { git = "https://git.meli.delivery/meli/mime_apps", version = "^0.2.0" }
2018-08-06 14:58:54 +03:00
nom = "3.2.0"
notify = "4.0.1" # >:c
notify-rust = "^3" # >:c
2018-08-06 14:58:54 +03:00
termion = "1.5.1"
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"] }
unicode-segmentation = "1.2.1" # >:c
2019-07-22 15:14:39 +03:00
text_processing = { path = "../text_processing", version = "*" }
2019-07-11 11:44:27 +03:00
libc = {version = "0.2.59", features = ["extra_traits",]}
nix = "0.15.0"
2019-10-07 16:42:44 +03:00
rusqlite = {version = "0.20.0", optional =true }
[features]
2019-10-07 16:42:44 +03:00
default = ["sqlite3"]
2019-10-07 16:42:44 +03:00
sqlite3 = ["rusqlite"]
# Print tracing logs as meli runs
debug-tracing = []