From 9cb3c3cf00d2ba8473123271b3e0e1551dc5ff95 Mon Sep 17 00:00:00 2001 From: Igor Matuszewski Date: Sat, 25 Aug 2018 01:48:14 +0200 Subject: [PATCH] Import `json_internal` Fixing error from https://github.com/rust-lang/rust/pull/53610#issuecomment-415710193, specifically https://ci.appveyor.com/project/rust-lang/rust/build/1.0.8732/job/1vio56we88sawdcb#L11560. Confirmed the error and the fix while using https://github.com/rust-lang/rust/commit/61b00727076ce251b54bdefa18779a13819d2209. --- src/actions/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/mod.rs b/src/actions/mod.rs index e2e4b0e32cb..cb4c0e9b39d 100644 --- a/src/actions/mod.rs +++ b/src/actions/mod.rs @@ -15,7 +15,7 @@ use rls_analysis::AnalysisHost; use rls_vfs::{Vfs, FileContents}; use crate::config::FmtConfig; use crate::config::Config; -use serde_json::{self, json}; +use serde_json::{self, json, json_internal}; use url::Url; use rls_span as span; use crate::Span;