Skip to content

Commit

Permalink
third-party: enable signal feature in crate nix
Browse files Browse the repository at this point in the history
Summary: This only seems to affect how autocargo works -- it is usable already through Buck.

Reviewed By: manav-a, dtolnay

Differential Revision: D68734129

fbshipit-source-id: c49432f3eab2a89ca786c8b5d981970f0bed6c7b
  • Loading branch information
Marius Eriksen authored and facebook-github-bot committed Jan 28, 2025
1 parent b63f493 commit 6ff5b90
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion detcore-model/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bytesize = "1.1"
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] }
libc = "0.2.139"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
reverie-syscalls = { version = "0.1.0", git = "https://github.com/facebookexperimental/reverie.git", branch = "main" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
shell-words = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion detcore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ digest = { version = "0.0.0", path = "../common/digest" }
futures = { version = "0.3.30", features = ["async-await", "compat"] }
lazy_static = "1.4"
libc = "0.2.139"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
pretty = "0.12.1"
pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false }
procfs = "0.15.1"
Expand Down
2 changes: 1 addition & 1 deletion hermit-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rus
goblin = "0.5.2"
lazy_static = "1.4"
libc = "0.2.139"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
num_cpus = "1.16"
once_cell = "1.12"
pretty_assertions = { version = "1.2", features = ["alloc"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ path = "standalone/stacktrace_events.rs"
close-err = "1.0.2"
detcore = { version = "0.0.0", path = "../detcore" }
libc = "0.2.139"
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "term", "time", "user", "zerocopy"] }
nix = { version = "0.29.0", features = ["dir", "event", "hostname", "inotify", "ioctl", "mman", "mount", "net", "poll", "ptrace", "reboot", "resource", "sched", "signal", "term", "time", "user", "zerocopy"] }
regex = "1.9.2"
tempfile = "3.8"

0 comments on commit 6ff5b90

Please sign in to comment.