]> git.lizzy.rs Git - rust.git/commitdiff
:arrow_up: update rust
authorAleksey Kladov <aleksey.kladov@gmail.com>
Fri, 18 Jan 2019 07:47:41 +0000 (10:47 +0300)
committerAleksey Kladov <aleksey.kladov@gmail.com>
Sat, 19 Jan 2019 12:36:58 +0000 (15:36 +0300)
.travis.yml
Cargo.lock
crates/ra_lsp_server/Cargo.toml
crates/ra_lsp_server/src/main_loop.rs
crates/tools/src/lib.rs

index 12e4da4a30fc7ab673f073d0bfab239bfd3507a7..7ccfe78fb9ad058fcc90858d8428468a54b2758c 100644 (file)
@@ -6,7 +6,7 @@ before_cache:
 
 build: &rust_build
     language: rust
-    rust: 1.31.1
+    rust: 1.32.0
     script:
         - rustup component add rustfmt
         - rustup component add rust-src
index e0a41e2580c3f18c2192eda0694a1aa09ce18e59..490299b4b0cea7703594d1f70e633c8212bd0291 100644 (file)
@@ -785,7 +785,6 @@ dependencies = [
  "ra_syntax 0.1.0",
  "ra_text_edit 0.1.0",
  "ra_vfs 0.1.0",
- "rayon 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  "relative-path 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
  "rustc-hash 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
  "serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)",
index e87d311ebb37a4b388479427f087ed0543f504aa..dd8543c561e83897debb38cad712317209cb3f4f 100644 (file)
@@ -5,7 +5,6 @@ version = "0.1.0"
 authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
 
 [dependencies]
-rayon = "1.0.2"
 threadpool = "1.7.1"
 relative-path = "0.4.0"
 failure = "0.1.4"
index 19fd294e0b7f260581f29ee24640b97beb0060dc..c48c4dd9edcf41568f286c18fb5e7e2d2d64d9f5 100644 (file)
@@ -12,7 +12,6 @@
 use lsp_types::NumberOrString;
 use ra_ide_api::{Canceled, FileId, LibraryData};
 use ra_vfs::VfsTask;
-use rayon;
 use rustc_hash::FxHashSet;
 use serde::{de::DeserializeOwned, Serialize};
 use threadpool::ThreadPool;
index fa619af333bf06cf001b802a63599ca591fd3f98..39f181432406c090a13c6ce521e84e96694a4e54 100644 (file)
@@ -15,7 +15,7 @@
 pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron";
 pub const SYNTAX_KINDS: &str = "crates/ra_syntax/src/syntax_kinds/generated.rs.tera";
 pub const AST: &str = "crates/ra_syntax/src/ast/generated.rs.tera";
-const TOOLCHAIN: &str = "1.31.1";
+const TOOLCHAIN: &str = "1.32.0";
 
 #[derive(Debug)]
 pub struct Test {