28 lines
604 B
TOML
28 lines
604 B
TOML
[package]
|
|
name = "test_ui_stack"
|
|
version = "0.1.0"
|
|
authors = ["Antoine Beyeler <abeyeler@gmail.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2024"
|
|
rust-version = "1.88"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
|
|
[dependencies]
|
|
eframe = { workspace = true, features = [
|
|
"default",
|
|
"persistence",
|
|
"__screenshot", # __screenshot is so we can dump a screenshot using EFRAME_SCREENSHOT_TO
|
|
] }
|
|
|
|
# For image support:
|
|
egui_extras = { workspace = true, features = ["default", "image", "serde"] }
|
|
|
|
env_logger = { version = "0.10", default-features = false, features = [
|
|
"auto-color",
|
|
"humantime",
|
|
] }
|