Skip to content

Commit 4d21a39

Browse files
authored
Update Rust to 1.73.0 (#388)
Depends on tcdi/postgrestd#51
1 parent d39c3b7 commit 4d21a39

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

doc/book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ src = "src"
66
title = "PL/Rust Guide"
77

88
[preprocessor.variables.variables]
9-
toolchain_ver = "1.72.0"
9+
toolchain_ver = "1.73.0"

doc/src/install-plrust-on-debian-ubuntu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Where:
2828
Example:
2929

3030
```
31-
plrust-trusted-1.2.3_1.72.0-debian-pg15-amd64.deb
31+
plrust-trusted-1.2.3_1.73.0-debian-pg15-amd64.deb
3232
```
3333

3434
## Preparing the environment

plrust/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ fi
7575
git pull
7676
git submodule update --init --recursive
7777
else
78-
git clone https://github.com/tcdi/postgrestd.git --branch "rust-1.72.0" --recurse-submodules
78+
git clone https://github.com/tcdi/postgrestd.git --branch "rust-1.73.0" --recurse-submodules
7979
cd ./postgrestd
8080
fi
8181
rm -f rust-toolchain.toml

plrustc/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ fi
2525
export RUSTC_BOOTSTRAP=1
2626

2727
version=$($RUSTC --version | cut -d ' ' -f 2)
28-
if [ "$version" != "1.72.0" ]; then
29-
echo "rustc ('$RUSTC') is not version 1.72.0" >&2
28+
if [ "$version" != "1.73.0" ]; then
29+
echo "rustc ('$RUSTC') is not version 1.73.0" >&2
3030
exit 1
3131
fi
3232

plrustc/plrustc/uitests/ice_hook.stderr

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
thread 'rustc' panicked at 'Here is your ICE', plrustc/src/lints/force_ice.rs
1+
thread 'rustc' panicked at plrustc/src/lints/force_ice.rs:
2+
Here is your ICE
23
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
34

45
error: the compiler unexpectedly panicked. this is a bug.

plrustc/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.72.0"
2+
channel = "1.73.0"
33
components = [ "rustfmt", "rust-src", "rustc-dev", "cargo", "llvm-tools" ]
44
targets = [ ]
55
profile = "minimal"

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.72.0"
2+
channel = "1.73.0"
33
components = [ "rustfmt", "rust-src", "rustc-dev", "llvm-tools" ]
44
targets = [ ]
55
profile = "minimal"

0 commit comments

Comments
 (0)