From f299e50e6c029124eb26a9abcdc86e19504b7f02 Mon Sep 17 00:00:00 2001 From: kjeremy Date: Thu, 14 Nov 2019 17:30:59 -0500 Subject: Remove snapshots since we no long commit them --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 183e9b521..bb3cd6151 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1 @@ crates/ra_syntax/test_data/** -text eof=LF -crates/ra_ide_api/src/snapshots/** -text eof=LF -- cgit v1.2.3 From 1e3b1cc7eb42ed006304d24f3c8b24ff71b4dced Mon Sep 17 00:00:00 2001 From: kjeremy Date: Thu, 14 Nov 2019 17:06:44 -0500 Subject: Set text to autodetect and use LF --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index bb3cd6151..e749e1dc9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ +* text=auto eol=lf crates/ra_syntax/test_data/** -text eof=LF -- cgit v1.2.3 From 50825a41d8661e4a93f92c81913c675a48247037 Mon Sep 17 00:00:00 2001 From: kjeremy Date: Thu, 14 Nov 2019 17:09:47 -0500 Subject: Renormalize line endings --- crates/ra_prof/Cargo.toml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/crates/ra_prof/Cargo.toml b/crates/ra_prof/Cargo.toml index bb241258c..751bcdeb8 100644 --- a/crates/ra_prof/Cargo.toml +++ b/crates/ra_prof/Cargo.toml @@ -1,19 +1,19 @@ -[package] -edition = "2018" -name = "ra_prof" -version = "0.1.0" -authors = ["rust-analyzer developers"] -publish = false - -[dependencies] -once_cell = "1.0.1" -itertools = "0.8.0" -backtrace = "0.3.28" - -[target.'cfg(not(target_env = "msvc"))'.dependencies] -jemallocator = { version = "0.3.2", optional = true } -jemalloc-ctl = { version = "0.3.2", optional = true } - -[features] -jemalloc = [ "jemallocator", "jemalloc-ctl" ] -cpu_profiler = [] +[package] +edition = "2018" +name = "ra_prof" +version = "0.1.0" +authors = ["rust-analyzer developers"] +publish = false + +[dependencies] +once_cell = "1.0.1" +itertools = "0.8.0" +backtrace = "0.3.28" + +[target.'cfg(not(target_env = "msvc"))'.dependencies] +jemallocator = { version = "0.3.2", optional = true } +jemalloc-ctl = { version = "0.3.2", optional = true } + +[features] +jemalloc = [ "jemallocator", "jemalloc-ctl" ] +cpu_profiler = [] -- cgit v1.2.3