sp-npos-elections should not depend on itself (#6444)

This removes the `dev-dependency` onto `sp-npos-elections` from itself.
A crate should not depend on itself directly, especially not to make any
macros work.
This commit is contained in:
Bastian Köcher
2020-06-20 11:49:18 +02:00
committed by GitHub
parent 62ba0cc714
commit 1951962836
5 changed files with 19 additions and 19 deletions
@@ -18,8 +18,8 @@
//! Code generation for the ratio assignment type.
use crate::field_name_for;
use proc_macro2::{TokenStream as TokenStream2};
use syn::{GenericArgument};
use proc_macro2::TokenStream as TokenStream2;
use syn::GenericArgument;
use quote::quote;
fn from_impl(count: usize) -> TokenStream2 {