Skip to content

Commit

Permalink
Cargo.toml: specify nix features to use
Browse files Browse the repository at this point in the history
A breaking change in the latest `nix` crate now requires specifying which
features to enable:

nix-rust/nix#2091
  • Loading branch information
jlebon committed Sep 18, 2023
1 parent c1b9f4b commit f41d950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ is-terminal = "0.4"
libc = "0.2.148"
libdnf-sys = { path = "rust/libdnf-sys", version = "0.1.0" }
maplit = "1.0"
nix = "0.27.1"
nix = { version = "0.27.1", features = ["fs", "mount", "signal", "user"] }
openssl = "0.10.57"
once_cell = "1.18.0"
os-release = "0.1.0"
Expand Down

0 comments on commit f41d950

Please sign in to comment.