18 lines
413 B
TOML
18 lines
413 B
TOML
[package]
|
|
name = "test_egui_extras_compilation"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2024"
|
|
rust-version = "1.88"
|
|
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
|