From eede8586c1178ee34684a43221af58df5d96603f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=9A=D0=BE=D1=82=D0=BB?= =?UTF-8?q?=D1=8F=D1=80=D0=BE=D0=B2?= Date: Thu, 22 Aug 2019 21:00:23 +0300 Subject: [PATCH] 1. Fixed "use of deprecated item 'rustc_plugin': import this through `rustc_driver::plugin` instead to make TLS work correctly. See https://github.com/rust-lang/rust/issues/62717" 2. Updated to `rust nightly e44fdf979 2019-08-21` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 77d3678..bc3b0b6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -198,6 +198,7 @@ Licensed under the Apache License, Version 2.0 extern crate syntax; extern crate rustc_driver; + mod nightly; pub use self::nightly::*;