Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.lock

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

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ shell-words = "1.1.1"
libc = "0.2"
ipnetwork = "0.21"
bcrypt = "0.19"
# `argon2` 0.5 uses `crypto-common` 0.1.7, which deliberately pins
# `generic-array` to 0.14.7 to avoid the 0.14.9 deprecation-only release.
# Revisit this transitive hold when the stable RustCrypto stack migrates to
# hybrid-array:
# https://github.com/RustCrypto/traits/issues/2036
argon2 = { version = "0.5", features = ["std"] }
rand = "0.10"
# Pinned to match russh's ssh-key (0.63.x uses =0.7.0-rc.11) so the workspace
Expand All @@ -94,10 +99,10 @@ security-framework = "3.7.0"
tempfile = "3.27.0"
mockito = "1.7.2"
tokio-test = "0.4"
serial_test = "3.4"
serial_test = "4.0.1"
insta = "1.47"
criterion = { version = "0.8", features = ["html_reports"] }
mockall = "0.14"
mockall = "0.15.0"

[[bench]]
name = "large_output_benchmark"
Expand Down