Skip to content

Commit d92c84e

Browse files
committed
v1.76.0
- rust 1.76.0 - zlib 1.3.1 - libpq 15.6
1 parent 4d6e072 commit d92c84e

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ RUN set -eux \
116116

117117

118118
# zlib - http://zlib.net/
119-
ARG ZLIB_VERSION=1.3
119+
ARG ZLIB_VERSION=1.3.1
120120

121121
RUN set -eux \
122122
&& echo "Building zlib ${ZLIB_VERSION}..." \
@@ -132,7 +132,7 @@ RUN set -eux \
132132

133133

134134
# libpq - https://ftp.postgresql.org/pub/source/
135-
ARG POSTGRESQL_VERSION=15.5
135+
ARG POSTGRESQL_VERSION=15.6
136136

137137
RUN set -eux \
138138
&& echo "Building libpq ${POSTGRESQL_VERSION}..." \

README.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div>
22
<div align="center">
3-
<img src="https://www.rust-lang.org/logos/rust-logo-blk.svg" height="100" width="100" />
3+
<img src="https://www.rust-lang.org/logos/rust-logo-blk.svg" height="130" width="130" />
44
</div>
55

66
<h1 align="center">Rust Linux / Darwin Builder</h1>
@@ -42,7 +42,7 @@ Below are the default toolchains included in the Docker image.
4242
docker run --rm \
4343
--volume "${PWD}/sample":/root/src \
4444
--workdir /root/src \
45-
joseluisq/rust-linux-darwin-builder:1.75.0 \
45+
joseluisq/rust-linux-darwin-builder:1.76.0 \
4646
sh -c "cargo build --release --target x86_64-unknown-linux-musl"
4747
```
4848

@@ -52,7 +52,7 @@ docker run --rm \
5252
docker run --rm \
5353
--volume "${PWD}/sample":/root/src \
5454
--workdir /root/src \
55-
joseluisq/rust-linux-darwin-builder:1.75.0 \
55+
joseluisq/rust-linux-darwin-builder:1.76.0 \
5656
sh -c "cargo build --release --target x86_64-unknown-linux-gnu"
5757
```
5858

@@ -62,7 +62,7 @@ docker run --rm \
6262
docker run --rm \
6363
--volume "${PWD}/sample":/root/src \
6464
--workdir /root/src \
65-
joseluisq/rust-linux-darwin-builder:1.75.0 \
65+
joseluisq/rust-linux-darwin-builder:1.76.0 \
6666
sh -c "cargo build --release --target x86_64-apple-darwin"
6767
```
6868

@@ -74,7 +74,7 @@ docker run --rm \
7474
docker run --rm \
7575
--volume "${PWD}/sample":/root/src \
7676
--workdir /root/src \
77-
joseluisq/rust-linux-darwin-builder:1.75.0 \
77+
joseluisq/rust-linux-darwin-builder:1.76.0 \
7878
sh -c "cargo build --release --target aarch64-unknown-linux-gnu"
7979
```
8080

@@ -84,7 +84,7 @@ docker run --rm \
8484
docker run --rm \
8585
--volume "${PWD}/sample":/root/src \
8686
--workdir /root/src \
87-
joseluisq/rust-linux-darwin-builder:1.75.0 \
87+
joseluisq/rust-linux-darwin-builder:1.76.0 \
8888
sh -c "cargo build --release --target aarch64-unknown-linux-musl"
8989
```
9090

@@ -94,7 +94,7 @@ docker run --rm \
9494
docker run --rm \
9595
--volume "${PWD}/sample":/root/src \
9696
--workdir /root/src \
97-
joseluisq/rust-linux-darwin-builder:1.75.0 \
97+
joseluisq/rust-linux-darwin-builder:1.76.0 \
9898
sh -c "cargo build --release --target aarch64-apple-darwin"
9999
```
100100

@@ -107,7 +107,7 @@ It's known that the [`CARGO_HOME`](https://doc.rust-lang.org/cargo/guide/cargo-h
107107
You can also use the image as a base for your Dockerfile:
108108

109109
```Dockerfile
110-
FROM joseluisq/rust-linux-darwin-builder:1.75.0
110+
FROM joseluisq/rust-linux-darwin-builder:1.76.0
111111
```
112112

113113
### OSXCross
@@ -150,7 +150,7 @@ compile:
150150
@docker run --rm -it \
151151
-v $(PWD):/drone/src \
152152
-w /drone/src \
153-
joseluisq/rust-linux-darwin-builder:1.75.0 \
153+
joseluisq/rust-linux-darwin-builder:1.76.0 \
154154
make cross-compile
155155
.PHONY: compile
156156

@@ -175,12 +175,12 @@ Just run the makefile `compile` target, then you will see two release binaries `
175175
make compile
176176
# 1. Cross compiling example...
177177

178-
# rustc 1.75.0 (82e1608df 2023-12-21)
178+
# rustc 1.76.0 (07dca489a 2024-02-04)
179179
# binary: rustc
180-
# commit-hash: 82e1608dfa6e0b5569232559e3d385fea5a93112
181-
# commit-date: 2023-12-21
180+
# commit-hash: 07dca489ac2d933c78d3c5158e3f43beefeb02ce
181+
# commit-date: 2024-02-04
182182
# host: aarch64-unknown-linux-gnu
183-
# release: 1.75.0
183+
# release: 1.76.0
184184
# LLVM version: 17.0.6
185185

186186
# 2. Compiling application (linux-musl x86_64)...

0 commit comments

Comments
 (0)