Skip to content

Commit

Permalink
chore(deps): Fix issue with cargo refetching refs on every run (#18331
Browse files Browse the repository at this point in the history
)

bug(deps): Fix issue with `cargo` refetching refs on every run

Cargo appears to have an issue with tag names containing a `+` that causes it to
re-fetch the git repos as well as the cargo.io index on each run. Changing those
tag names resolves the issue.
  • Loading branch information
bruceg authored Aug 21, 2023
1 parent d41f9f6 commit 6397edb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ ntapi = { git = "https://github.com/MSxDOS/ntapi.git", rev = "24fc1e47677fc9f6e3
# The current `openssl-sys` crate will vendor the OpenSSL sources via
# `openssl-src` at version 1.1.1*, but we want version 3.1.*. Bring in forked
# version of that crate with the appropriate dependency patched in.
openssl-sys = { git = "https://github.com/vectordotdev/rust-openssl.git", tag = "openssl-sys-v0.9.91+3.0.0" }
openssl-src = { git = "https://github.com/vectordotdev/openssl-src-rs.git", tag = "release-300-force-engine+3.1.2"}
openssl-sys = { git = "https://github.com/vectordotdev/rust-openssl", tag = "openssl-sys-v0.9.91_3.0.0" }
openssl-src = { git = "https://github.com/vectordotdev/openssl-src-rs", tag = "release-300-force-engine_3.1.2" }

[features]
# Default features for *-unknown-linux-gnu and *-apple-darwin
Expand Down

0 comments on commit 6397edb

Please sign in to comment.