21 lines
430 B
TOML
21 lines
430 B
TOML
[package]
|
|
name = "test_egui_extras_compilation"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.81"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = [
|
|
"eframe",
|
|
"egui_extras",
|
|
] # We don't use them, just check that things compile
|
|
|
|
[dependencies]
|
|
eframe = { workspace = true, features = ["default", "persistence"] }
|
|
egui_extras = { workspace = true }
|