1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00
Files
egui/tests/egui_tests/Cargo.toml
Emil Ernerfeldt fd54387eac Clean up clippy lint config (#8437)
* [x] I have followed the instructions in the PR template

Remove clippy lint groups already covered by `all` (`complexity`,
`perf`, `suspicious`, and the misspelled `correctnesss`), and two
individual lints covered by the `cargo` group (`negative_feature_names`,
`wildcard_dependencies`).

Add `publish = false` to the two internal crates that were missing it
(`popups`, `egui_tests`), which silences the
`clippy::cargo_common_metadata` warnings.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-20 08:42:12 +00:00

20 lines
503 B
TOML

[package]
name = "egui_tests"
edition.workspace = true
license.workspace = true
publish = false
rust-version.workspace = true
version.workspace = true
[package.metadata.cargo-shear]
ignored = ["image"] # We need the png feature
[dev-dependencies]
egui = { workspace = true, default-features = true }
egui_kittest = { workspace = true, features = ["snapshot", "wgpu"] }
egui_extras = { workspace = true, features = ["image"] }
image = { workspace = true, features = ["png"] }
[lints]
workspace = true