drop imports already in 2021 prelude

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2021-12-01 14:13:13 +01:00
parent 381751a4e8
commit e68855945d
9 changed files with 0 additions and 14 deletions

View File

@ -1,5 +1,3 @@
use std::convert::TryFrom;
use proc_macro2::{Ident, Span};
use syn::AttributeArgs;

View File

@ -6,7 +6,6 @@ extern crate proc_macro;
extern crate proc_macro2;
use std::cell::RefCell;
use std::convert::TryFrom;
use proc_macro::TokenStream as TokenStream_1;
use proc_macro2::TokenStream;

View File

@ -1,6 +1,3 @@
use std::convert::TryFrom;
use std::iter::IntoIterator;
use proc_macro2::TokenStream;
use quote::quote;

View File

@ -1,4 +1,3 @@
use std::convert::TryFrom;
use std::env;
use proc_macro2::{Ident, Span, TokenStream};

View File

@ -1,7 +1,5 @@
#[perlmod::package(name = "RSPM::Bless", lib = "perlmod_test")]
mod export {
use std::convert::TryFrom;
use anyhow::Error;
use perlmod::Value;

View File

@ -1,6 +1,5 @@
//! Module dealing with perl [`Array`](crate::Array)s. ([`AV`](crate::ffi::AV) pointers).
use std::convert::TryFrom;
use std::marker::PhantomData;
use crate::error::CastError;

View File

@ -1,7 +1,5 @@
//! Module dealing with perl [`Hash`](crate::Hash)es. ([`HV`](crate::ffi::HV) pointers).
use std::convert::TryFrom;
use crate::error::CastError;
use crate::ffi::{self, HV, SV};
use crate::raw_value;

View File

@ -1,6 +1,5 @@
//! Module containing the [`Scalar`] and [`Mortal`] types.
use std::convert::TryInto;
use std::marker::PhantomData;
use std::mem;

View File

@ -317,7 +317,6 @@ impl Value {
/// ```
/// #[perlmod::package(name = "My::Thing")]
/// mod export {
/// use std::convert::TryFrom;
/// use std::sync::Mutex;
///
/// use perlmod::{Error, Value};