From 4c745d219ffdb445606047fa476159b836209bf7 Mon Sep 17 00:00:00 2001 From: Zac Pullar-Strecker Date: Sat, 1 Aug 2020 11:47:27 +1200 Subject: remove some crates.io deps --- crates/ra_ide/Cargo.toml | 4 +--- crates/ra_ide/src/hover.rs | 44 +++++++++++++++++++++++++++++--------------- 2 files changed, 30 insertions(+), 18 deletions(-) (limited to 'crates') diff --git a/crates/ra_ide/Cargo.toml b/crates/ra_ide/Cargo.toml index 4e2ba6d61..6d5c9daf5 100644 --- a/crates/ra_ide/Cargo.toml +++ b/crates/ra_ide/Cargo.toml @@ -17,13 +17,11 @@ indexmap = "1.3.2" itertools = "0.9.0" log = "0.4.8" rustc-hash = "1.1.0" -rand = { version = "0.7.3", features = ["small_rng"] } url = "*" -maplit = "*" -lazy_static = "*" pulldown-cmark-to-cmark = "4.0.2" pulldown-cmark = "0.7.0" oorandom = "11.1.2" +once_cell = "1" stdx = { path = "../stdx" } diff --git a/crates/ra_ide/src/hover.rs b/crates/ra_ide/src/hover.rs index a82fe6714..1531aca2e 100644 --- a/crates/ra_ide/src/hover.rs +++ b/crates/ra_ide/src/hover.rs @@ -1,5 +1,8 @@ use std::collections::{HashMap, HashSet}; -use std::iter::once; +use std::{ + iter::{once, FromIterator}, + sync::Mutex, +}; use hir::{ db::DefDatabase, Adt, AsAssocItem, AsName, AssocItemContainer, AttrDef, Crate, Documentation, @@ -7,8 +10,7 @@ use hir::{ ModuleSource, Semantics, }; use itertools::Itertools; -use lazy_static::lazy_static; -use maplit::{hashmap, hashset}; +use once_cell::sync::Lazy; use pulldown_cmark::{CowStr, Event, Options, Parser, Tag}; use pulldown_cmark_to_cmark::cmark; use ra_db::SourceDatabase; @@ -419,14 +421,26 @@ enum Namespace { Macros, } -lazy_static!( - /// Map of namespaces to identifying prefixes and suffixes as defined by RFC1946. - static ref NS_MAP: HashMap, HashSet<&'static str>)> = hashmap!{ - Namespace::Types => (hashset!{"type", "struct", "enum", "mod", "trait", "union", "module"}, hashset!{}), - Namespace::Values => (hashset!{"value", "function", "fn", "method", "const", "static", "mod", "module"}, hashset!{"()"}), - Namespace::Macros => (hashset!{"macro"}, hashset!{"!"}) - }; -); +static NS_MAP: Lazy< + HashMap, HashSet<&'static &'static str>)>, +> = Lazy::new(|| { + let mut map = HashMap::new(); + map.insert(Namespace::Types, (HashSet::new(), HashSet::new())); + map.insert( + Namespace::Values, + ( + HashSet::from_iter( + ["value", "function", "fn", "method", "const", "static", "mod", "module"].iter(), + ), + HashSet::from_iter(["()"].iter()), + ), + ); + map.insert( + Namespace::Macros, + (HashSet::from_iter(["macro"].iter()), HashSet::from_iter(["!"].iter())), + ); + map +}); impl Namespace { /// Extract the specified namespace from an intra-doc-link if one exists. @@ -437,7 +451,7 @@ impl Namespace { prefixes .iter() .map(|prefix| { - s.starts_with(prefix) + s.starts_with(*prefix) && s.chars() .nth(prefix.len() + 1) .map(|c| c == '@' || c == ' ') @@ -447,7 +461,7 @@ impl Namespace { || suffixes .iter() .map(|suffix| { - s.starts_with(suffix) + s.starts_with(*suffix) && s.chars() .nth(suffix.len() + 1) .map(|c| c == '@' || c == ' ') @@ -464,8 +478,8 @@ impl Namespace { fn strip_prefixes_suffixes(mut s: &str) -> &str { s = s.trim_matches('`'); NS_MAP.iter().for_each(|(_, (prefixes, suffixes))| { - prefixes.iter().for_each(|prefix| s = s.trim_start_matches(prefix)); - suffixes.iter().for_each(|suffix| s = s.trim_end_matches(suffix)); + prefixes.iter().for_each(|prefix| s = s.trim_start_matches(*prefix)); + suffixes.iter().for_each(|suffix| s = s.trim_end_matches(*suffix)); }); s.trim_start_matches("@").trim() } -- cgit v1.2.3