diff options
author | Jeremy Kolb <[email protected]> | 2019-01-24 12:58:38 +0000 |
---|---|---|
committer | Jeremy Kolb <[email protected]> | 2019-01-24 12:58:38 +0000 |
commit | 1ebaf06f396ed5d99a3e80676a884d4709ec2e6f (patch) | |
tree | e53fafe1e14731d3863e4a71679d84e06ef879aa /crates/tools | |
parent | eaef72937767dbb79f240cc4d08cb05f7f4071ea (diff) |
Use stable toolchain
Diffstat (limited to 'crates/tools')
-rw-r--r-- | crates/tools/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tools/src/lib.rs b/crates/tools/src/lib.rs index 39f181432..d404db214 100644 --- a/crates/tools/src/lib.rs +++ b/crates/tools/src/lib.rs | |||
@@ -15,7 +15,7 @@ pub type Result<T> = std::result::Result<T, failure::Error>; | |||
15 | pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron"; | 15 | pub const GRAMMAR: &str = "crates/ra_syntax/src/grammar.ron"; |
16 | pub const SYNTAX_KINDS: &str = "crates/ra_syntax/src/syntax_kinds/generated.rs.tera"; | 16 | pub const SYNTAX_KINDS: &str = "crates/ra_syntax/src/syntax_kinds/generated.rs.tera"; |
17 | pub const AST: &str = "crates/ra_syntax/src/ast/generated.rs.tera"; | 17 | pub const AST: &str = "crates/ra_syntax/src/ast/generated.rs.tera"; |
18 | const TOOLCHAIN: &str = "1.32.0"; | 18 | const TOOLCHAIN: &str = "stable"; |
19 | 19 | ||
20 | #[derive(Debug)] | 20 | #[derive(Debug)] |
21 | pub struct Test { | 21 | pub struct Test { |