Skip to content

Commit

Permalink
Bump Rust version to 1.74.1
Browse files Browse the repository at this point in the history
  • Loading branch information
def- committed Feb 19, 2024
1 parent 0485658 commit 9ec7bba
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 32 deletions.
45 changes: 29 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.74.1"

[profile.dev]
split-debuginfo = "unpacked"
Expand Down
2 changes: 1 addition & 1 deletion bin/ci-builder
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -euo pipefail

NIGHTLY_RUST_DATE=2023-11-19
NIGHTLY_RUST_DATE=2024-02-15

cd "$(dirname "$0")/.."

Expand Down
2 changes: 1 addition & 1 deletion bin/lint-versions
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
#
# lint-versions - Check rust version

grep "rust-version = " Cargo.toml | grep -q "1\.74\.0" || \
grep "rust-version = " Cargo.toml | grep -q "1\.74\.1" || \
(echo "Please validate new Rust versions for compilation time performance regressions or ask Team Testing to do so. Afterwards change the tested version in bin/lint-versions" && exit 1)
18 changes: 9 additions & 9 deletions ci/builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,16 @@ RUN mkdir rust \
&& gpg --verify rust.asc rust.tar.gz \
&& tar -xzf rust.tar.gz -C /usr/local/lib/rustlib/ --strip-components=4 \
&& rm -rf rust.asc rust.tar.gz rust \
&& cargo install --root /usr/local --version "=0.8.0" --locked cargo-vet \
&& cargo install --root /usr/local --version "=0.6.0" --locked cargo-about \
&& cargo install --root /usr/local --version "=2.0.2" --locked cargo-deb \
&& cargo install --root /usr/local --version "=0.12.2" --locked cargo-deny \
&& cargo install --root /usr/local --version "=0.9.1" --locked cargo-vet \
&& cargo install --root /usr/local --version "=0.6.1" --locked cargo-about \
&& cargo install --root /usr/local --version "=2.0.6" --locked cargo-deb \
&& cargo install --root /usr/local --version "=0.14.11" --locked cargo-deny \
&& cargo install --root /usr/local --version "=0.1.0" --locked cargo-deplint \
&& cargo install --root /usr/local --version ="0.9.28" --locked cargo-hakari \
&& cargo install --root /usr/local --version "=0.9.63" --locked cargo-nextest \
&& cargo install --root /usr/local --version "=0.5.37" --locked cargo-llvm-cov \
&& cargo install --root /usr/local --version "=0.1.43" --features=vendored-openssl cargo-udeps \
&& cargo install --root /usr/local --version "=0.2.15" --no-default-features --features=s3,openssl/vendored sccache \
&& cargo install --root /usr/local --version "=0.9.29" --locked cargo-hakari \
&& cargo install --root /usr/local --version "=0.9.67" --locked cargo-nextest \
&& cargo install --root /usr/local --version "=0.6.5" --locked cargo-llvm-cov \
&& cargo install --root /usr/local --version "=0.1.46" --features=vendored-openssl cargo-udeps \
&& cargo install --root /usr/local --version "=0.7.7" --no-default-features --features=s3,openssl/vendored sccache \
&& cargo install --root /usr/local --version "=0.3.6" cargo-binutils \
&& cargo install --root /usr/local --version "=0.12.1" wasm-pack

Expand Down
2 changes: 1 addition & 1 deletion misc/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [

[workspace.package]
edition = "2021"
rust-version = "1.74.0"
rust-version = "1.74.1"

[workspace.metadata.vet]
store = { path = "../cargo-vet" }
Expand Down
2 changes: 1 addition & 1 deletion src/timely-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mz-ore = { path = "../ore", features = ["async", "tracing_", "test"] }
workspace-hack = { version = "0.0.0", path = "../workspace-hack" }
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread", "time"] }
num-traits = "0.2"
ahash = { version = "0.8.0", default_features = false }
ahash = { version = "0.8.8", default_features = false }
uuid = { version = "1.7.0", features = ["serde", "v4"] }

[package.metadata.cargo-udeps.ignore]
Expand Down
4 changes: 2 additions & 2 deletions src/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ publish = false

### BEGIN HAKARI SECTION
[dependencies]
ahash = { version = "0.8.0" }
ahash = { version = "0.8.8" }
anyhow = { version = "1.0.66", features = ["backtrace"] }
async-compression = { version = "0.4.5", default-features = false, features = ["gzip", "tokio", "zstd"] }
aws-config = { version = "1.1.1", default-features = false, features = ["sso"] }
Expand Down Expand Up @@ -128,7 +128,7 @@ zeroize = { version = "1.5.7", features = ["serde"] }
zstd-sys = { version = "2.0.9", features = ["std"] }

[build-dependencies]
ahash = { version = "0.8.0" }
ahash = { version = "0.8.8" }
anyhow = { version = "1.0.66", features = ["backtrace"] }
async-compression = { version = "0.4.5", default-features = false, features = ["gzip", "tokio", "zstd"] }
aws-config = { version = "1.1.1", default-features = false, features = ["sso"] }
Expand Down

0 comments on commit 9ec7bba

Please sign in to comment.