diff options
author | Joe Wilm <jwilm@users.noreply.github.com> | 2018-12-10 09:53:56 -0800 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-12-10 17:53:56 +0000 |
commit | 217ad9ec285b4923de1790b0976c8c793039c994 (patch) | |
tree | 440e0d6d35f119246d2b113fd01b431f4f9c2c38 /tests | |
parent | 7ab0b448479c9705fa14003bda97040630710b7a (diff) | |
download | alacritty-217ad9ec285b4923de1790b0976c8c793039c994.tar.gz alacritty-217ad9ec285b4923de1790b0976c8c793039c994.zip |
Upgrade to Rust 2018
This resolves a lot of NLL issues, however full NLL will be necessary to
handle a couple of remaining issues.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ref.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/ref.rs b/tests/ref.rs index 6546921d..1ab012d4 100644 --- a/tests/ref.rs +++ b/tests/ref.rs @@ -1,7 +1,6 @@ #[macro_use] extern crate serde_derive; -extern crate serde_json as json; -extern crate alacritty; +use serde_json as json; use std::fs::File; use std::io::{self, Read}; |