-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Developer experience - enable all the features when running tests by default #2516
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,6 +77,11 @@ parking_lot = "0.12" | |
rand = "0.8" | ||
tempfile = "3.7.1" | ||
semver = "1.0.7" | ||
nix = { path = ".", features = ["acct", "aio", "dir", "env", "event", "fanotify", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIUC, this dev dependency is for tests (examples/benchmarks), so I guess we cannot remove the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Both work for me locally, CI passes. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, that's right, but that means it only builds or runs the clippy check for a small set of code, which is not gated with any feature There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was still needed for |
||
"feature", "fs", "hostname", "inotify", "ioctl", "kmod", "mman", "mount", "mqueue", | ||
"net", "personality", "poll", "pthread", "ptrace", "quota", "process", "reboot", | ||
"resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", | ||
"user", "zerocopy"] } | ||
|
||
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dev-dependencies] | ||
caps = "0.5.3" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this was reverted accidentally
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm... Good catch. I wonder how I managed that. Time to go to sleep I guess.