We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5902d42 commit 69e8d87Copy full SHA for 69e8d87
.evergreen/compile-only.sh
@@ -9,6 +9,9 @@ source ./.evergreen/env.sh
9
if [ "$RUST_VERSION" != "" ]; then
10
rustup toolchain install $RUST_VERSION
11
TOOLCHAIN="+${RUST_VERSION}"
12
+ # Remove the local git dependencies for bson and mongocrypt, which don't work properly with the MSRV resolver.
13
+ sed -i "s/bson =.*/bson = \"2\"/" Cargo.toml
14
+ sed -i "s/mongocrypt =.*/mongocrypt = { version = \"0.2\", optional = true }/" Cargo.toml
15
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS=fallback cargo +nightly -Zmsrv-policy generate-lockfile
16
fi
17
0 commit comments