-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 845 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "egui_vertical_stack"
version = "0.2.0"
edition = "2024"
documentation = "https://docs.rs/egui_vertical_stack"
repository = "https://github.com/MakerPnP/egui_vertical_stack"
homepage = "https://github.com/MakerPnP/egui_vertical_stack"
license = "MIT OR Apache-2.0"
authors = [
"Dominic Clifton <me@dominicclifton.name>"
]
description = "A vertical stack widget with resize handles for egui"
readme = "README.md"
keywords = ["egui", "gui", "widget", "panels", "resize"]
categories = ["gui"]
include = [
"assets/**/*",
"examples/**/*",
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-*",
]
[features]
# for developers, adds overlays on various elements to aid with debugging
layout_debugging = []
[dependencies]
egui = "0.33.0"
[dev-dependencies]
eframe = { version = "0.32.0", features = ["wgpu"] }