diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2019-07-06 13:45:21 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2019-07-17 10:48:54 +0200 |
commit | d3718823ba920db1707ba1d137fcf00ce2f467b1 (patch) | |
tree | 5ca2a6e62260179d73f54aeb39a464f2d57dfa47 /components/script_plugins/lib.rs | |
parent | b6bd2d730207870e2ace19c018d0148315fbca7b (diff) | |
download | servo-d3718823ba920db1707ba1d137fcf00ce2f467b1.tar.gz servo-d3718823ba920db1707ba1d137fcf00ce2f467b1.zip |
Upgrade to rustc 1.38.0-nightly (4b65a86eb 2019-07-15)
Diffstat (limited to 'components/script_plugins/lib.rs')
-rw-r--r-- | components/script_plugins/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script_plugins/lib.rs b/components/script_plugins/lib.rs index b6a6ba54272..f17556f2eab 100644 --- a/components/script_plugins/lib.rs +++ b/components/script_plugins/lib.rs @@ -22,6 +22,10 @@ #[macro_use] extern crate rustc; +// Work around TLS failure: https://github.com/rust-lang/rust/issues/62717#issuecomment-511876555 +#[allow(unused)] +extern crate rustc_driver; + extern crate rustc_plugin; extern crate syntax; |