Commit 714fb0d 1 parent 97312f2 commit 714fb0d Copy full SHA for 714fb0d
File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ repository and compiled from source or installed from
27
27
of the nightly toolchain is supported at any given time.
28
28
29
29
<!-- NOTE: Keep in sync with nightly date on rust-toolchain. -->
30
- It's recommended to use ` nightly-2020-12-01 ` toolchain.
31
- You can install it by using ` rustup install nightly-2020-12-01 ` if you already have rustup.
30
+ It's recommended to use ` nightly-2020-12-14 ` toolchain.
31
+ You can install it by using ` rustup install nightly-2020-12-14 ` if you already have rustup.
32
32
Then you can do:
33
33
34
34
``` sh
35
35
$ rustup component add rustc-dev llvm-tools-preview --toolchain nightly-2020-11-19
36
- $ cargo +nightly-2020-12-01 install --git https://github.com/rust-lang/rust-semverver
36
+ $ cargo +nightly-2020-12-14 install --git https://github.com/rust-lang/rust-semverver
37
37
```
38
38
39
39
You'd also need ` cmake ` for some dependencies, and a few common libraries (if you hit
Original file line number Diff line number Diff line change 1
1
# NOTE: Keep in sync with nightly date on README
2
2
[toolchain]
3
- channel = "nightly-2020-12-01 "
3
+ channel = "nightly-2020-12-14 "
4
4
components = ["llvm-tools-preview", "rustc-dev"]
Original file line number Diff line number Diff line change @@ -73,32 +73,32 @@ warning: variant with no public fields changed to a tuple variant (breaking)
73
73
|
74
74
19 | Abc(u8),
75
75
| ^^^^^^^
76
- warning: variant with no public fields changed to a tuple variant (breaking)
76
+ warning: variant with public fields changed to a tuple variant (breaking)
77
77
--> enums/new.rs:20:5
78
78
|
79
79
20 | Bcd,
80
80
| ^^^
81
- warning: variant with no public fields changed to a struct variant (breaking)
81
+ warning: variant with public fields changed to a struct variant (breaking)
82
82
--> enums/new.rs:21:5
83
83
|
84
84
21 | Cde { f: u8 },
85
85
| ^^^^^^^^^^^^^
86
- warning: variant with no public fields changed to a tuple variant (breaking)
86
+ warning: variant with public fields changed to a tuple variant (breaking)
87
87
--> enums/new.rs:22:5
88
88
|
89
89
22 | Def,
90
90
| ^^^
91
- warning: variant with no public fields changed to a struct variant (breaking)
91
+ warning: variant with public fields changed to a struct variant (breaking)
92
92
--> enums/new.rs:23:5
93
93
|
94
94
23 | Efg { f: u8 },
95
95
| ^^^^^^^^^^^^^
96
- warning: private field removed from variant with private fields (breaking)
96
+ warning: public field removed from variant with no private fields (breaking)
97
97
--> enums/old.rs:25:11
98
98
|
99
99
25 | Ghi { f: u8 },
100
100
| ^^^^^
101
- note: private field added to variant with private fields (non- breaking)
101
+ warning: public field added to variant with no private fields (breaking)
102
102
--> enums/new.rs:25:11
103
103
|
104
104
25 | Ghi { g: u8 },
You can’t perform that action at this time.
0 commit comments