1
Fork 0

Rollup merge of #68999 - andjo403:itertools, r=Centril

remove dependency on itertools

r? @Centril
This commit is contained in:
Yuki Okushi 2020-02-12 18:55:42 +09:00 committed by GitHub
commit 9b51a52084
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 9 deletions

View file

@ -3750,7 +3750,6 @@ dependencies = [
name = "rustc_macros"
version = "0.1.0"
dependencies = [
"itertools 0.8.0",
"proc-macro2 1.0.3",
"quote 1.0.2",
"syn 1.0.11",
@ -3814,7 +3813,6 @@ name = "rustc_mir_build"
version = "0.0.0"
dependencies = [
"arena",
"itertools 0.8.0",
"log",
"rustc",
"rustc_apfloat",

View file

@ -12,4 +12,3 @@ synstructure = "0.12.1"
syn = { version = "1", features = ["full"] }
proc-macro2 = "1"
quote = "1"
itertools = "0.8"

View file

@ -1,4 +1,3 @@
use itertools::Itertools;
use proc_macro::TokenStream;
use proc_macro2::{Delimiter, TokenTree};
use quote::quote;
@ -469,10 +468,7 @@ pub fn rustc_queries(input: TokenStream) -> TokenStream {
attributes.push(quote! { eval_always });
};
let mut attribute_stream = quote! {};
for e in attributes.into_iter().intersperse(quote! {,}) {
attribute_stream.extend(e);
}
let attribute_stream = quote! {#(#attributes),*};
// Add the query to the group
group_stream.extend(quote! {

View file

@ -11,7 +11,6 @@ doctest = false
[dependencies]
arena = { path = "../libarena" }
itertools = "0.8"
log = "0.4"
rustc = { path = "../librustc" }
rustc_apfloat = { path = "../librustc_apfloat" }