-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
42 lines (38 loc) · 1010 Bytes
/
Cargo.toml
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
38
39
40
41
42
[package]
name = "egui_taffy"
version = "0.6.0"
edition = "2021"
authors = ["Pēteris Pakalns"]
repository = "https://github.com/PPakalns/egui_taffy/"
homepage = "https://github.com/PPakalns/egui_taffy/"
description = "Grid, Flexbox, Block layout support for egui using taffy"
keywords = ["egui", "flexbox", "taffy", "layout", "ui"]
categories = ["gui"]
license = "MIT"
rust-version = "1.81"
exclude = ["/.github", "./examples/web/"]
[dependencies]
egui = { version = "0.30", default-features = false }
log = { version = "0.4", default-features = false }
taffy = { version = "0.7.3", default-features = false, features = [
"taffy_tree",
"detailed_layout_info",
] }
[features]
default = ["taffy_default"]
taffy_default = [
"taffy/block_layout",
"taffy/content_size",
"taffy/flexbox",
"taffy/grid",
"taffy/std",
]
[dev-dependencies]
eframe = { version = "0.30", default-features = false, features = [
"accesskit",
"default_fonts",
"wgpu",
"wayland",
"web_screen_reader",
"x11",
] }