Skip to content

Commit b028472

Browse files
committedJan 19, 2019
⬆️ update rust
1 parent 1800bfb commit b028472

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ before_cache:
66

77
build: &rust_build
88
language: rust
9-
rust: 1.31.1
9+
rust: 1.32.0
1010
script:
1111
- rustup component add rustfmt
1212
- rustup component add rust-src

‎Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎crates/ra_lsp_server/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ version = "0.1.0"
55
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
66

77
[dependencies]
8-
rayon = "1.0.2"
98
threadpool = "1.7.1"
109
relative-path = "0.4.0"
1110
failure = "0.1.4"

‎crates/ra_lsp_server/src/main_loop.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use gen_lsp_server::{
1212
use lsp_types::NumberOrString;
1313
use ra_ide_api::{Canceled, FileId, LibraryData};
1414
use ra_vfs::VfsTask;
15-
use rayon;
1615
use rustc_hash::FxHashSet;
1716
use serde::{de::DeserializeOwned, Serialize};
1817
use threadpool::ThreadPool;

‎crates/tools/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub type Result<T> = std::result::Result<T, failure::Error>;
1515
pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron";
1616
pub const SYNTAX_KINDS: &str = "crates/ra_syntax/src/syntax_kinds/generated.rs.tera";
1717
pub const AST: &str = "crates/ra_syntax/src/ast/generated.rs.tera";
18-
const TOOLCHAIN: &str = "1.31.1";
18+
const TOOLCHAIN: &str = "1.32.0";
1919

2020
#[derive(Debug)]
2121
pub struct Test {

0 commit comments

Comments
 (0)
Please sign in to comment.