Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/attr.rs')
| -rw-r--r-- | crates/hir_def/src/attr.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/crates/hir_def/src/attr.rs b/crates/hir_def/src/attr.rs index 03fe46e267..3bf7a33030 100644 --- a/crates/hir_def/src/attr.rs +++ b/crates/hir_def/src/attr.rs @@ -1,12 +1,6 @@ //! A higher level attributes based on TokenTree, with also some shortcuts. -use std::{ - convert::{TryFrom, TryInto}, - fmt, - hash::Hash, - ops, - sync::Arc, -}; +use std::{fmt, hash::Hash, ops, sync::Arc}; use base_db::CrateId; use cfg::{CfgExpr, CfgOptions}; |