Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 8c48b8a

Browse files
committed
1 parent 02c70d5 commit 8c48b8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# NOTE: Keep in sync with nightly date on README
22
[toolchain]
3-
channel = "nightly-2021-06-14"
3+
channel = "nightly-2021-07-03"
44
components = ["llvm-tools-preview", "rustc-dev"]

src/bin/rust-semver-public.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ fn main() {
3939

4040
queries.global_ctxt().unwrap().peek_mut().enter(|tcx| {
4141
let krate = tcx
42-
.crates()
42+
.crates(())
4343
.iter()
4444
.flat_map(|crate_num| {
4545
let def_id = crate_num.as_def_id();

src/bin/rust-semverver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fn main() {
5757
// See issue #64 for details.
5858

5959
let mut crates: Vec<_> = tcx
60-
.crates()
60+
.crates(())
6161
.iter()
6262
.flat_map(|crate_num| {
6363
let def_id = crate_num.as_def_id();

0 commit comments

Comments
 (0)