-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
chore: fix cargo feature warning #11900
Conversation
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.
what's the full cargo command, and which directory is it being run in? Adding an arbitrary feature here shouldn't be necessary
|
crates/cli/commands/Cargo.toml
Outdated
dev = ["arbitrary"] | ||
arbitrary = [ |
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.
this could have something to do with the name dev
we should just rename dev
to arbitrary because the dev feature here only enables arbitrary related features
Co-authored-by: alpharush <0xalpharush@protonmail.com>
I was getting the following warning when try to build with
--features arbitrary
:This seems to fix it but I'm honestly not sure what the expected behavior of cargo is (rust-lang/cargo#10788 was closed as fixed)