-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 743 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
[package]
name = "egui-shape-editor"
version = "0.1.0"
edition = "2021"
authors = ["Anton Kharuzhyi <publicantroids@gmail.com>"]
license = "MIT OR Apache-2.0"
include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
description = "Shape Editor widget for Egui framework"
keywords = ["gui", "egui", "widget"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"examples/*",
]
[dependencies]
derivative = "2.2.0"
dyn-clone = "1.0.16"
egui = "0.27.0"
ecolor = "0.27.0"
egui_extras = "0.27.0"
itertools = "0.13.0"
num-traits = "0.2.18"
ordered-float = "4.2.0"
strum = { version = "0.26.1", features = ["derive"] }
puffin_egui = "0.27.0"