-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
39 lines (35 loc) · 920 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
[package]
name = "egui_taffy"
version = "0.1.2"
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"
[dependencies]
egui = { version = "0.29", default-features = false }
log = { version = "0.4", default-features = false }
taffy = { version = "0.6.2", default-features = false, features = [
"taffy_tree",
] }
[features]
default = ["taffy_default"]
taffy_default = [
"taffy/block_layout",
"taffy/content_size",
"taffy/flexbox",
"taffy/grid",
"taffy/std",
]
[dev-dependencies]
eframe = { version = "0.29", default-features = false, features = [
"wgpu",
"accesskit",
"default_fonts",
"wayland",
"web_screen_reader",
"x11",
] }