forked from iced-rs/iced_aw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
88 lines (81 loc) · 1.88 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
[package]
name = "iced_aw"
version = "0.1.0"
authors = ["Kaiden42 <[email protected]>"]
edition = "2018"
description = "Additional widgets for the Iced GUI library"
license = "MIT"
repository = "https://github.com/kaiden42/iced_aw"
# TODO documentation
readme = "README.md"
keywords = ["gui", "ui", "graphics", "interface", "widgets", "iced"]
categories = ["gui"]
[features]
badge = []
button = []
card = []
colors = []
date_picker = ["chrono", "lazy_static", "icon_text"]
color_picker = ["icon_text", "iced_graphics/canvas"]
floating_button = ["button"]
grid = []
glow = [] # TODO
icon_text = []
icons = []
modal = []
tab_bar = []
tabs = ["tab_bar"]
time_picker = ["chrono", "icon_text", "iced_graphics/canvas"]
wrap = []
number_input = ["num-traits"]
selection_list = []
split = []
default = [
"badge",
"card",
"colors",
"date_picker",
"color_picker",
"floating_button",
"grid",
"modal",
"tab_bar",
"tabs",
"time_picker",
"wrap",
"selection_list",
"split"
]
[dependencies]
iced_style = "0.3"
num-traits = { version = "0.2.14", optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
iced_native = "0.4"
iced_graphics = "0.2"
chrono = { version = "0.4.19", optional = true }
lazy_static = { version = "1.4.0", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
iced_web = "0.4"
dodrio = "0.2.0"
wasm-bindgen = "0.2.69"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3.46"
[workspace]
members = [
"examples/badge",
"examples/card",
"examples/color_picker",
"examples/date_picker",
"examples/floating_button",
"examples/grid",
"examples/modal",
#"examples/tab_bar",
"examples/tabs",
#"examples/tabs_min",
"examples/time_picker",
"examples/wrap",
"examples/web",
"examples/number_input",
"examples/selection_list",
"examples/split",
]