forked from iced-rs/iced_aw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
113 lines (105 loc) · 2.58 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
[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"]
grid = ["itertools"]
glow = [] # TODO
icons = []
tab_bar = []
tabs = ["tab_bar"]
time_picker = ["chrono", "icons", "iced/canvas"]
wrap = []
number_input = ["num-format", "num-traits", "typed_input"]
typed_input = []
selection_list = []
menu = []
quad = []
spinner = []
context_menu = []
slide_bar = []
drop_down = []
sidebar = []
default = [
"badge",
"card",
"number_input",
"date_picker",
"color_picker",
"grid",
"tab_bar",
"tabs",
"time_picker",
"slide_bar",
"wrap",
"selection_list",
"quad",
"context_menu",
"spinner",
"drop_down",
"menu",
"sidebar",
]
[dependencies]
cfg-if = "1.0"
chrono = { version = "0.4.34", optional = true }
itertools = { version = "0.12.1", optional = true }
num-format = { version = "0.4.4", optional = true }
num-traits = { version = "0.2.18", optional = true }
time = { version = "0.3.34", features = ["local-offset"], optional = true }
once_cell = { version = "1.19.0", optional = true }
[dependencies.iced]
git = "https://github.com/iced-rs/iced.git"
#rev = "b474a2b7a763dcde6a377cb409001a7b5285ee8d"
version = "0.13.0-dev"
default-features = false
features = ["advanced"]
[profile.dev.package."*"]
opt-level = 2
[workspace]
members = [
"examples/badge",
"examples/card",
"examples/number_input",
"examples/typed_input",
"examples/date_picker",
"examples/color_picker",
"examples/grid",
"examples/tab_bar",
"examples/tabs",
"examples/time_picker",
"examples/sliderbar",
"examples/wrap",
"examples/selection_list",
"examples/context_menu",
"examples/spinner",
"examples/WidgetIDReturn",
"examples/drop_down",
"examples/menu",
"examples/sidebar",
]
[workspace.dependencies.iced]
git = "https://github.com/iced-rs/iced.git"
#rev = "b474a2b7a763dcde6a377cb409001a7b5285ee8d"
version = "0.13.0-dev"
#default-features = false
features = ["advanced", "wgpu"]
[workspace.dependencies.iced_aw]
path = "./"
default-features = false