mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-10 15:14:32 +00:00
⬆️ update rust
This commit is contained in:
parent
1800bfb6e6
commit
b028472481
5 changed files with 2 additions and 5 deletions
|
@ -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
|
||||
|
|
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -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)",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -12,7 +12,6 @@ use gen_lsp_server::{
|
|||
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;
|
||||
|
|
|
@ -15,7 +15,7 @@ pub type Result<T> = std::result::Result<T, failure::Error>;
|
|||
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 {
|
||||
|
|
Loading…
Reference in a new issue