Skip to content

Commit

Permalink
upgrade nix to 0.29.0
Browse files Browse the repository at this point in the history
Summary:
Enable more features that are disabled by default and update call
sites.

Reviewed By: opsound, jasonwhite

Differential Revision: D66275420

fbshipit-source-id: 4969045de7751c7d16b6ed5c7411f04077eb0ddc
  • Loading branch information
chadaustin authored and facebook-github-bot committed Dec 17, 2024
1 parent 6203d65 commit ab65849
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
20 changes: 13 additions & 7 deletions hphp/hack/src/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 hphp/hack/src/shmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ nohash-hasher = "0.2"
static_assertions = "1.1.0"

[dev-dependencies]
nix = "0.26.4"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }
rand = { version = "0.8", features = ["small_rng"] }
6 changes: 3 additions & 3 deletions third-party/watchman/src/watchman/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ tokio = { version = "1.41.0", features = ["full", "test-util", "tracing"] }
watchman_client = { version = "0.9.0", path = "../rust/watchman_client" }

[target.'cfg(target_os = "linux")'.dependencies]
nix = "0.26.4"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }

[target.'cfg(target_os = "macos")'.dependencies]
nix = "0.26.4"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }

[target.'cfg(unix)'.dependencies]
nix = "0.26.4"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }

[features]
default = []
Expand Down

0 comments on commit ab65849

Please sign in to comment.