-
Notifications
You must be signed in to change notification settings - Fork 1
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
Integrating configuration into Cargo.toml
#10
Comments
Good point, it never occurred to me to put the configuration in Do guidelines exist for how third-party tools should organize their configuration data? Should a tool called |
nightly now supports a top level The usefulness of cargo-cranky will steeply diminish soon, unless cranky decides to add more features not found in nightly.
IMO |
Not just nightly, 1.74 which is going to |
That's great news! I'll update the README when 1.74 comes out. |
Recently I was getting annoyed at how many metadata files are in the root of my workspace. To combat this issue it feels like tooling that is completely cargo-focused like this should really be storing its configuration in the
Cargo.toml
. The example from the readme could look like:This could also support some of the usecases from #3 easily. The lints could be merged from
workspace.metadata.lints
andpackage.metadata.lints
to support crate-specific overrides.The text was updated successfully, but these errors were encountered: