Skip to content

Commit cf3e250

Browse files
authored
Update rust version (foundation-model-stack#347)
Signed-off-by: Mateus Devino <[email protected]>
1 parent fc843f0 commit cf3e250

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+227
-191
lines changed

Cargo.lock

Lines changed: 73 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fms-guardrails-orchestr8"
33
version = "0.1.0"
4-
edition = "2021"
4+
edition = "2024"
55
authors = ["Evaline Ju", "Gaurav Kumbhat", "Dan Clark"]
66
description = "Foundation models orchestration server"
77
build = "build.rs"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG CONFIG_FILE=config/config.yaml
55

66
## Rust builder ################################################################
77
# Specific debian version so that compatible glibc version is used
8-
FROM rust:1.84.0-bullseye AS rust-builder
8+
FROM rust:1.85.1-bullseye AS rust-builder
99
ARG PROTOC_VERSION
1010

1111
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
@@ -45,7 +45,7 @@ RUN cargo clippy --all-targets --all-features -- -D warnings
4545

4646
## Formatting check stage #######################################################
4747
FROM fms-guardrails-orchestr8-builder AS format
48-
RUN cargo fmt --check
48+
RUN cargo +nightly fmt --check
4949

5050
## Release Image ################################################################
5151

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.84.0"
2+
channel = "1.85.1"
33
components = ["rustfmt", "clippy"]

0 commit comments

Comments
 (0)