SERVER-121257: Dont allow patch version on rust dependencies to change (#49290)

GitOrigin-RevId: 508c3e2eb4a4c7127451549e1fe78190b8fbcde6
This commit is contained in:
Andrew Bradshaw 2026-03-09 14:56:07 -07:00 committed by MongoDB Bot
parent c7ef577cf1
commit e2fcd55c0c
2 changed files with 718 additions and 699 deletions

View File

@ -330,7 +330,7 @@ rust.toolchain(
crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate")
crate.spec(
package = "wasmtime",
version = "40.0.2",
version = "=40.0.2",
)
crate.spec(
features = [
@ -340,7 +340,7 @@ crate.spec(
"wasi",
],
package = "wasmtime-c-api-impl",
version = "40.0.2",
version = "=40.0.2",
)
# We partially custom build wasmtime_c because otherwise it tries to use cmake
@ -353,7 +353,7 @@ crate.annotation(
)
crate.spec(
package = "zstd-sys",
version = "2.0.16+zstd.1.5.7",
version = "=2.0.16+zstd.1.5.7",
)
# Bindgen uses libclang to parse code so it needs to know the path to libclang

1411
MODULE.bazel.lock generated

File diff suppressed because one or more lines are too long