Skip to content

Commit 6a7effb

Browse files
bors[bot]xFrednet
andauthored
Merge #100
100: Bump nightly -> 2023-01-26 r=xFrednet a=xFrednet r? `@ghost` Closes #70 Co-authored-by: xFrednet <[email protected]>
2 parents 986e6be + 4b31e1d commit 6a7effb

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- uses: actions/checkout@v3
3939
- uses: actions-rs/toolchain@v1
4040
with:
41-
toolchain: nightly-2022-12-15
41+
toolchain: nightly-2023-01-26
4242
components: cargo, clippy, rustfmt
4343
- run: rustc -vV
4444
- run: cargo build

.github/workflows/rust_bors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- uses: actions-rs/toolchain@v1
2929
with:
30-
toolchain: nightly-2022-12-15
30+
toolchain: nightly-2023-01-26
3131
components: cargo, clippy, rustfmt
3232
- run: rustc -vV
3333
- run: cargo build

cargo-marker/src/driver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use crate::ExitStatus;
2121
/// This is the driver version and toolchain, that is used by the setup command
2222
/// to install the driver.
2323
static DEFAULT_DRIVER_INFO: Lazy<RustcDriverInfo> = Lazy::new(|| RustcDriverInfo {
24-
toolchain: "nightly-2022-12-15".to_string(),
24+
toolchain: "nightly-2023-01-26".to_string(),
2525
version: "0.1.0".to_string(),
2626
api_version: "0.1.0".to_string(),
2727
});

marker_driver_rustc/src/conversion/marker/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl<'ast, 'tcx> MarkerConversionContext<'ast, 'tcx> {
5151
self.to_syn_ty(mut_ty.ty),
5252
)
5353
})),
54-
hir::TyKind::Rptr(rust_lt, mut_ty) => TyKind::Ref(self.alloc(|| {
54+
hir::TyKind::Ref(rust_lt, mut_ty) => TyKind::Ref(self.alloc(|| {
5555
RefTy::new(
5656
data,
5757
self.to_lifetime(rust_lt),

marker_driver_rustc/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use std::ops::Deref;
3939
use std::path::{Path, PathBuf};
4040
use std::process::{exit, Command};
4141

42-
const RUSTC_TOOLCHAIN_VERSION: &str = "nightly-2022-12-15";
42+
const RUSTC_TOOLCHAIN_VERSION: &str = "nightly-2023-01-26";
4343

4444
struct DefaultCallbacks;
4545
impl rustc_driver::Callbacks for DefaultCallbacks {}

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2022-12-15"
2+
channel = "nightly-2023-01-26"
33
components = ["cargo", "llvm-tools-preview", "rust-src", "rust-std", "rustc", "rustc-dev", "rustfmt"]
44
# This has to be synced with the toolchain in `github/workflows`

util/update-toolchain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
if [[ $1 == nightly-????-??-?? ]]
44
then
5-
sed -i "s/nightly-2022-12-15/$1/g" ./marker_driver_rustc/src/main.rs ./rust-toolchain .github/workflows/* ./util/update-toolchain.sh cargo-marker/src/driver.rs
5+
sed -i "s/nightly-2023-01-26/$1/g" ./marker_driver_rustc/src/main.rs ./rust-toolchain .github/workflows/* ./util/update-toolchain.sh cargo-marker/src/driver.rs
66
else
77
echo "Please enter a valid toolchain like \`nightly-2022-01-01\`"
88
fi;

0 commit comments

Comments
 (0)