From 01640aacb84d0f9c8983477f4f5ea39bcc3791c5 Mon Sep 17 00:00:00 2001 From: Wil Thomason Date: Sun, 26 Jan 2020 23:48:49 -0500 Subject: [PATCH] Fix nvim-rs dependency --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f3bcc40..5e85cb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1594,7 +1594,7 @@ dependencies = [ [[package]] name = "nvim-rs" version = "0.1.1-alpha.0" -source = "git+https://github.com/KillTheMule/nvim-rs?branch=futures#9efc7480f976d80f9e57443d62c1da2f37805186" +source = "git+https://github.com/KillTheMule/nvim-rs#9efc7480f976d80f9e57443d62c1da2f37805186" dependencies = [ "async-trait", "futures 0.3.1", diff --git a/Cargo.toml b/Cargo.toml index 01800dd..b48b2c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ env_logger = "0.7.1" rmpv = "0.4.2" rust-embed = { version = "5.2.0", features = ["debug-embed"] } image = "0.22.3" -nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", branch = "futures", features = [ "use_tokio" ] } +nvim-rs = { git = "https://github.com/KillTheMule/nvim-rs", features = [ "use_tokio" ] } tokio = { version = "0.2.9", features = [ "blocking", "process", "time" ] } async-trait = "0.1.18" lazy_static = "1.4.0"