Skip to content

Commit 1ffc616

Browse files
committed
Various rust and python dependency updates
Including transformers 4.37.1, tokenizers 0.15.1, safetensors 0.4.2
1 parent 024cbe2 commit 1ffc616

File tree

5 files changed

+153
-140
lines changed

5 files changed

+153
-140
lines changed

Cargo.lock

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

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.4.12", features = ["derive", "env"] }
9+
clap = { version = "4.4.18", features = ["derive", "env"] }
1010
ctrlc = { version = "3.4.2", features = ["termination"] }
1111
nix = "0.27.1"
1212
tracing = "0.1.40"

router/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ path = "src/main.rs"
1616
[dependencies]
1717
axum = { version = "0.6.20", features = ["json"] }
1818
text-generation-client = { path = "client" }
19-
clap = { version = "^4.4.11", features = ["derive", "env"] }
19+
clap = { version = "^4.4.18", features = ["derive", "env"] }
2020
futures = "^0.3.30"
2121
flume = "^0.11.0"
2222
metrics = "0.21.1"
@@ -26,17 +26,17 @@ nohash-hasher = "^0.2.0"
2626
num = "^0.4.1"
2727
num_cpus = "^1.16.0"
2828
hyper = "^0.14.28" # Override to address CVE-2023-26964
29-
openssl = "^0.10.62" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
30-
openssl-sys = "^0.9.98" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
31-
rustls-webpki = "0.102.0" # Override to address WS-2023-0305, CVE-2018-16875
29+
openssl = "^0.10.63" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
30+
openssl-sys = "^0.9.99" # Override to address WS-2023-0082, WS-2023-0083, WS-2023-0195
31+
rustls-webpki = "0.102.1" # Override to address WS-2023-0305, CVE-2018-16875
3232
rand = "^0.8.5"
33-
serde = "^1.0.194"
34-
serde_json = "^1.0.110"
33+
serde = "^1.0.195"
34+
serde_json = "^1.0.111"
3535
thiserror = "^1.0.56"
36-
tokenizers = "0.15.0"
36+
tokenizers = "0.15.1"
3737
tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread", "parking_lot", "signal", "sync", "fs"] }
3838
tokio-rustls = "^0.25.0"
39-
rustls = "0.22.1"
39+
rustls = "0.22.2"
4040
tracing = "^0.1.40"
4141
tracing-subscriber = { version = "0.3.18", features = ["json"] }
4242
prost = "^0.12.3"

0 commit comments

Comments
 (0)