Skip to content

Commit 9ef5b19

Browse files
committed
Update rust to 1.72 and tokio to 1.32.0
1 parent 00aaec2 commit 9ef5b19

File tree

7 files changed

+36
-75
lines changed

7 files changed

+36
-75
lines changed

Cargo.lock

Lines changed: 30 additions & 70 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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[workspace]
2+
resolver = "2"
23
members = [
34
"router",
45
"router/client",

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ ENV LIBRARY_PATH="$CUDA_HOME/lib64/stubs"
8888

8989
## Rust builder ################################################################
9090
# Specific debian version so that compatible glibc version is used
91-
FROM rust:1.71-bullseye as rust-builder
91+
FROM rust:1.72-bullseye as rust-builder
9292
ARG PROTOC_VERSION
9393

9494
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse

launcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Olivier Dehaene"]
66
description = "Text Generation Launcher"
77

88
[dependencies]
9-
clap = { version = "4.3.17", features = ["derive", "env"] }
9+
clap = { version = "4.4.1", features = ["derive", "env"] }
1010
ctrlc = { version = "3.4.0", features = ["termination"] }
1111
subprocess = "0.2.9"
1212
tracing = "0.1.37"

router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ serde_json = "^1.0.103"
3636
#spin = "=0.9.8"
3737
thiserror = "^1.0.43"
3838
tokenizers = "0.13.4"
39-
tokio = { version = "^1.29.1", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync", "fs"] }
39+
tokio = { version = "^1.32.0", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync", "fs"] }
4040
tracing = "^0.1.37"
4141
tracing-subscriber = { version = "0.3.16", features = ["json"] }
4242
prost = "^0.11.9"

router/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build="build.rs"
88
futures = "^0.3.28"
99
prost = "^0.11.9"
1010
thiserror = "^1.0.43"
11-
tokio = { version = "^1.29.1", features = ["sync"] }
11+
tokio = { version = "^1.32.0", features = ["sync"] }
1212
tonic = "^0.9.2"
1313
tower = "^0.4.13"
1414
tracing = "^0.1.37"

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.71.0"
2+
channel = "1.72.0"
33
components = ["rustfmt", "clippy"]

0 commit comments

Comments
 (0)