Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix "unused manifest key: package.ignore" (#103)
On current main (`ee45b4cfa79408fc46893a67f2d3005f79e4e04c`) with Rust 1.83 (`rustc 1.83.0 (90b35a623 2024-11-26)`, `cargo 1.83.0 (5ffbef321 2024-10-29)`), running `cargo check` gives this warning: ``` warning: unused manifest key: package.ignore ``` Note: this warning may be buried under other warnings that could be fixed by #102. hawkw committed the `ignore = ["flake.nix", "flake.lock", ...]` key in 90bf2e9 in 2023. I cannot find any reference online to there being an `ignore` key in Cargo manifests, and fram context I am guessing that this was intended to be `exclude`, which is documented [here](https://doc.rust-lang.org/cargo/reference/manifest.html#the-exclude-and-include-fields). This PR fixes the warning by changing the key to `exclude`.
- Loading branch information