forked from iced-rs/iced_aw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
129 lines (121 loc) · 2.98 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[package]
name = "iced_aw"
version = "0.9.3"
authors = [
"Kaiden42 <[email protected]>",
"Andrew Wheeler <[email protected]>",
]
edition = "2021"
description = "Additional widgets for the Iced GUI library"
license = "MIT"
repository = "https://github.com/iced-rs/iced_aw"
# TODO documentation
readme = "README.md"
keywords = ["gui", "graphics", "interface", "widgets", "iced"]
categories = ["gui"]
[features]
badge = []
card = []
date_picker = ["chrono", "once_cell", "icons"]
color_picker = ["icons", "iced/canvas"]
cupertino = ["time", "iced/canvas", "icons"]
floating_element = []
grid = ["itertools"]
glow = [] # TODO
icons = []
modal = []
tab_bar = []
tabs = ["tab_bar"]
time_picker = ["chrono", "icons", "iced/canvas"]
wrap = []
number_input = ["num-traits"]
selection_list = []
split = []
menu = []
quad = []
spinner = []
context_menu = []
segmented_button = []
slide_bar = []
drop_down = []
default = [
"badge",
"card",
"number_input",
"date_picker",
"color_picker",
"floating_element",
"grid",
"modal",
"tab_bar",
"tabs",
"time_picker",
"slide_bar",
"wrap",
"selection_list",
"split",
"quad",
"context_menu",
"spinner",
"cupertino",
"segmented_button",
"drop_down",
"menu",
]
[dependencies]
cfg-if = "1.0"
num-traits = { version = "0.2.18", optional = true }
time = { version = "0.3.34", features = ["local-offset"], optional = true }
chrono = { version = "0.4.34", optional = true }
once_cell = { version = "1.19.0", optional = true }
itertools = { version = "0.12.1", optional = true }
[dependencies.iced]
#git = "https://github.com/iced-rs/iced.git"
#rev = "b474a2b7a763dcde6a377cb409001a7b5285ee8d"
version = "0.12.1"
default-features = false
features = ["advanced"]
[profile.dev.package."*"]
opt-level = 2
[workspace]
members = [
"examples/badge",
"examples/card",
"examples/number_input",
"examples/date_picker",
"examples/color_picker",
"examples/floating_element",
"examples/floating_element multioverlay",
"examples/floating_element_anchors",
"examples/font_loading",
"examples/grid",
"examples/modal",
"examples/modal_component",
"examples/multiple_modals",
"examples/tab_bar",
"examples/tabs",
"examples/time_picker",
"examples/sliderbar",
"examples/wrap",
"examples/selection_list",
"examples/split",
"examples/split_scroller",
"examples/context_menu",
"examples/spinner",
"examples/cupertino/cupertino_button",
"examples/cupertino/cupertino_spinner",
"examples/cupertino/cupertino_switch",
"examples/WidgetIDReturn",
"examples/segmented_button",
"examples/drop_down",
"examples/menu",
]
[workspace.dependencies.iced]
#git = "https://github.com/iced-rs/iced.git"
#rev = "b474a2b7a763dcde6a377cb409001a7b5285ee8d"
version = "0.12.1"
default-features = false
features = ["advanced"]
[workspace.dependencies.iced_aw]
path = "./"
default-features = false