From cac21a279bbb2209e281c461cac831a746c9c143 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Mon, 22 Jun 2020 19:20:38 +0300 Subject: [PATCH] melib: Remove dead dependencies --- Cargo.lock | 2 -- melib/Cargo.toml | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb0cf013..b0ee1af3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -833,14 +833,12 @@ dependencies = [ "nix", "nom", "notify", - "notify-rust", "reqwest", "rusqlite", "serde", "serde_derive", "serde_json", "smallvec", - "termion", "unicode-segmentation", "uuid", "xdg", diff --git a/melib/Cargo.toml b/melib/Cargo.toml index 0aa4462f..bff932bd 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -26,8 +26,6 @@ memmap = { version = "0.5.2", optional = true } nom = { version = "5.1.1" } 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.3", optional=true } serde = { version = "1.0.71", features = ["rc", ] } @@ -51,8 +49,8 @@ default = ["unicode_algorithms", "imap_backend", "maildir_backend", "mbox_backen debug-tracing = [] unicode_algorithms = ["unicode-segmentation"] imap_backend = ["native-tls"] -maildir_backend = ["notify", "notify-rust", "memmap"] -mbox_backend = ["notify", "notify-rust", "memmap"] +maildir_backend = ["notify", "memmap"] +mbox_backend = ["notify", "memmap"] notmuch_backend = [] jmap_backend = ["reqwest", "serde_json" ] vcard = []