Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Update everything to latest except for nix. In nix v0.23, a number of
enums were marked #[non_exhaustive]
(nix-rust/nix#1474). Since we want exhaustive
matches in some cases, we will use v0.22 until
non_exhaustive_omitted_patterns_lint is stablized
(rust-lang/rust#89554)
  • Loading branch information
jgallag88 committed Apr 27, 2022
1 parent 138dac1 commit 43a1642
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 35 deletions.
73 changes: 41 additions & 32 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ panic = "abort" # Save size. We don't need unwinding anyway.
# if systems are typically configured to dump core on SIGABRT

[dependencies]
getopts = "0.2.15"
nix = "0.12.0"
libc = "0.2.48"
getopts = "0.2"
nix = "0.22"
libc = "0.2"

[package.metadata.deb]
maintainer = "Delphix Engineering <eng@delphix.com>"
Expand Down

0 comments on commit 43a1642

Please sign in to comment.