Skip to content

Commit

Permalink
Fix some ./cargo audit vulnerabilities. (#13728)
Browse files Browse the repository at this point in the history
This fixes 4 errors and 1 warning leaving 2 errors with no current
solution and 5 warnings.

Besides the manual direct `time` dep upgrades, ran:
```
./cargo update \
    -p crossbeam-deque \
    -p nix \
    -p time \
    -p tokio \
    -p crossbeam-epoch
```
  • Loading branch information
jsirois authored Nov 29, 2021
1 parent 4282a47 commit 96a9bd9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 34 deletions.
66 changes: 34 additions & 32 deletions src/rust/engine/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/rust/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ serde_json = "1.0"
task_executor = { path = "task_executor" }
tempfile = "3"
testutil_mock = { package = "mock", path = "testutil/mock" }
time = "0.1.40"
time = "0.3"
tokio = { version = "1.4", features = ["macros", "rt-multi-thread"] }
tokio-util = { version = "0.6", features = ["io"] }
tryfuture = { path = "tryfuture" }
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/brfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ parking_lot = "0.11"
protobuf = { version = "2.0.6", features = ["with-bytes"] }
store = { path = "../store" }
task_executor = { path = "../../task_executor" }
time = "0.1.39"
time = "0.3"
tokio = { version = "1.4", features = ["rt-multi-thread", "macros", "signal"] }
tokio-stream = { version = "0.1", features = ["signal"] }
workunit_store = { path = "../../workunit_store" }
Expand Down

0 comments on commit 96a9bd9

Please sign in to comment.