-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (33 loc) · 969 Bytes
/
Cargo.toml
File metadata and controls
37 lines (33 loc) · 969 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
34
35
36
37
[package]
name = "egui_tool_windows"
version = "0.3.0"
edition = "2024"
documentation = "https://docs.rs/egui_tool_windows"
repository = "https://github.com/MakerPnP/egui_tool_windows"
homepage = "https://github.com/MakerPnP/egui_tool_windows"
license = "MIT OR Apache-2.0"
authors = [
"Dominic Clifton <me@dominicclifton.name>"
]
description = "Floating tool windows for egui that can be used in containers, like resize, scroll-area, frame, etc."
readme = "README.md"
keywords = ["egui", "gui", "widget", "floating", "windows"]
categories = ["gui"]
include = [
"assets/**/*",
"examples/**/*",
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-*",
]
[features]
# enable to see layout debugging information
layout_debugging = []
# enable if you need to use the egui persistence feature.
persistence = ["egui/persistence", "serde"]
[dependencies]
egui = { version = "0.33.0" }
serde = { version = "1", optional = true}
# Logging
log = "0.4"