From b2166a2f33d4a05d5a2a6c102a83142ed54cb8ea Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Mon, 23 Feb 2026 22:35:47 -0800 Subject: [PATCH] fix(gateway): pin internal crate dependencies to exact versions (#19224) Signed-off-by: Simo Lin --- sgl-model-gateway/Cargo.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/sgl-model-gateway/Cargo.toml b/sgl-model-gateway/Cargo.toml index b05a7c9fc..bc5f20824 100644 --- a/sgl-model-gateway/Cargo.toml +++ b/sgl-model-gateway/Cargo.toml @@ -75,16 +75,16 @@ url = "2.5.4" validator = { version = "0.20.0", features = ["derive"] } tokio-stream = { version = "0.1", features = ["sync"] } anyhow = "1.0" -reasoning-parser = "~1.0.0" -openai-protocol = { version = "~1.0.0", features = ["axum"] } -tool-parser = "~1.0.0" -llm-tokenizer = "~1.0.0" -smg-auth = "~1.0.0" -wfaas = "~1.0.0" -data-connector = "~1.0.0" -smg-mcp = "~1.0.0" -smg-wasm = "~1.0.0" -smg-mesh = "~1.0.0" +reasoning-parser = "=1.0.0" +openai-protocol = { version = "=1.0.0", features = ["axum"] } +tool-parser = "=1.0.0" +llm-tokenizer = "=1.0.0" +smg-auth = "=1.0.0" +wfaas = "=1.0.0" +data-connector = "=1.0.0" +smg-mcp = "=1.0.0" +smg-wasm = "=1.0.0" +smg-mesh = "=1.0.0" rustls = { version = "0.23", default-features = false, features = ["ring", "std"] } rustls-pemfile = "2.2" openssl = "0.10.73" @@ -107,7 +107,7 @@ openmetrics-parser = "0.4.4" arc-swap = "1.7.1" # gRPC and Protobuf dependencies -smg-grpc-client = "~1.0.0" +smg-grpc-client = "=1.0.0" tonic = { version = "0.14.2", features = ["gzip", "transport"] } prost = "0.14.1" prost-types = "0.14.1"