diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-12-28 22:44:12 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-12-28 22:44:12 +0000 |
commit | f3f073804cf768c0b219d89081a26bedfde8ffed (patch) | |
tree | 9b1ed063c84a2d3fc2c3ae493849a6360dc24ebd | |
parent | 751616f062b07f5dee2921f69886bd1a5b1234aa (diff) | |
parent | 1719b93120fa3d4b11eee5c0b42619c341584f0c (diff) |
Merge #353
353: update README with Rust 1.31 r=matklad a=yerke
Update README with Rust 1.31, since Rust 2018 edition is already on stable
Co-authored-by: Yerkebulan Tulibergenov <[email protected]>
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | ROADMAP.md | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -19,8 +19,7 @@ Work on the Rust Analyzer is sponsored by | |||
19 | 19 | ||
20 | ## Quick Start | 20 | ## Quick Start |
21 | 21 | ||
22 | Rust analyzer builds on Rust >= 1.30.0 (currently in beta) and uses | 22 | Rust analyzer builds on Rust >= 1.31.0 and uses the 2018 edition. |
23 | the 2018 edition. | ||
24 | 23 | ||
25 | ``` | 24 | ``` |
26 | # run tests | 25 | # run tests |
diff --git a/ROADMAP.md b/ROADMAP.md index 951a092b4..3856ebc5b 100644 --- a/ROADMAP.md +++ b/ROADMAP.md | |||
@@ -16,7 +16,7 @@ High-level architecture constraints: | |||
16 | It's *obvious* that the code should be shared, but OTOH, all great IDEs started as from-scratch rewrites. | 16 | It's *obvious* that the code should be shared, but OTOH, all great IDEs started as from-scratch rewrites. |
17 | * Don't hard-code a particular protocol or mode of operation. | 17 | * Don't hard-code a particular protocol or mode of operation. |
18 | Produce a library which could be used for implementing an LSP server, or for in-process embedding. | 18 | Produce a library which could be used for implementing an LSP server, or for in-process embedding. |
19 | * As long as possible, stick with stable Rust (NB: we currently use beta for 2018 edition and salsa). | 19 | * As long as possible, stick with stable Rust. |
20 | 20 | ||
21 | 21 | ||
22 | # Current Goals | 22 | # Current Goals |