diff --git a/Cargo.lock b/Cargo.lock index 51e11d28dfb..5066d5f0f5e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -47,15 +47,6 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344" -[[package]] -name = "arrayvec" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" -dependencies = [ - "nodrop", -] - [[package]] name = "arrayvec" version = "0.7.0" @@ -468,7 +459,7 @@ dependencies = [ name = "hir" version = "0.0.0" dependencies = [ - "arrayvec 0.7.0", + "arrayvec", "base_db", "cfg", "either", @@ -538,7 +529,7 @@ dependencies = [ name = "hir_ty" version = "0.0.0" dependencies = [ - "arrayvec 0.7.0", + "arrayvec", "base_db", "chalk-ir", "chalk-recursive", @@ -591,7 +582,6 @@ dependencies = [ "indexmap", "itertools", "log", - "num-format", "oorandom", "profile", "pulldown-cmark", @@ -944,12 +934,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "nodrop" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" - [[package]] name = "notify" version = "5.0.0-pre.9" @@ -976,16 +960,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "num-format" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bafe4179722c2894288ee77a9f044f02811c86af699344c498b0840c698a2465" -dependencies = [ - "arrayvec 0.4.12", - "itoa", -] - [[package]] name = "num_cpus" version = "1.13.0" @@ -1343,7 +1317,6 @@ dependencies = [ "lsp-types", "mbe", "mimalloc", - "num-format", "oorandom", "parking_lot", "proc_macro_srv", @@ -1587,7 +1560,7 @@ dependencies = [ name = "syntax" version = "0.0.0" dependencies = [ - "arrayvec 0.7.0", + "arrayvec", "cov-mark", "expect-test", "indexmap", diff --git a/crates/ide/Cargo.toml b/crates/ide/Cargo.toml index e76fa5c2dd3..3bc07aedf58 100644 --- a/crates/ide/Cargo.toml +++ b/crates/ide/Cargo.toml @@ -21,7 +21,6 @@ pulldown-cmark-to-cmark = "6.0.0" pulldown-cmark = { version = "0.8.0", default-features = false } url = "2.1.1" dot = "0.1.4" -num-format = "0.4.0" stdx = { path = "../stdx", version = "0.0.0" } syntax = { path = "../syntax", version = "0.0.0" } text_edit = { path = "../text_edit", version = "0.0.0" } diff --git a/crates/ide/src/status.rs b/crates/ide/src/status.rs index a9ab6337d71..22f1a09091b 100644 --- a/crates/ide/src/status.rs +++ b/crates/ide/src/status.rs @@ -10,7 +10,6 @@ use ide_db::{ RootDatabase, }; use itertools::Itertools; -use num_format::{Buffer, Locale}; use profile::{memory_usage, Bytes}; use rustc_hash::FxHashMap; use stdx::format_to; @@ -110,8 +109,7 @@ pub(crate) struct SyntaxTreeStats { impl fmt::Display for SyntaxTreeStats { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { - let buf = Buffer::default().write_formatted(&self.total, &Locale::en); - write!(fmt, "{} trees, {} preserved", buf.to_string(), self.retained) + write!(fmt, "{} trees, {} preserved", self.total, self.retained) } } diff --git a/crates/rust-analyzer/Cargo.toml b/crates/rust-analyzer/Cargo.toml index 9be140b58bc..3f35ce1ebcf 100644 --- a/crates/rust-analyzer/Cargo.toml +++ b/crates/rust-analyzer/Cargo.toml @@ -38,7 +38,6 @@ tracing = "0.1" tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] } tracing-tree = { version = "0.1.4" } always-assert = "0.1" -num-format = "0.4.0" stdx = { path = "../stdx", version = "0.0.0" } flycheck = { path = "../flycheck", version = "0.0.0" } ide = { path = "../ide", version = "0.0.0" } diff --git a/crates/rust-analyzer/src/handlers.rs b/crates/rust-analyzer/src/handlers.rs index 2bda4716a6c..3fd8b3cff7f 100644 --- a/crates/rust-analyzer/src/handlers.rs +++ b/crates/rust-analyzer/src/handlers.rs @@ -25,7 +25,6 @@ use lsp_types::{ SemanticTokensRangeResult, SemanticTokensResult, SymbolInformation, SymbolTag, TextDocumentIdentifier, TextDocumentPositionParams, Url, WorkspaceEdit, }; -use num_format::{Locale, ToFormattedString}; use project_model::TargetKind; use serde::{Deserialize, Serialize}; use serde_json::{json, to_value}; @@ -67,12 +66,8 @@ pub(crate) fn handle_analyzer_status( format_to!( buf, "Loaded {:?} packages across {} workspace{}.\n", - snap.workspaces - .iter() - .map(|w| w.n_packages()) - .sum::() - .to_formatted_string(&Locale::en), - snap.workspaces.len().to_formatted_string(&Locale::en), + snap.workspaces.iter().map(|w| w.n_packages()).sum::(), + snap.workspaces.len(), if snap.workspaces.len() == 1 { "" } else { "s" } ); }