-
Notifications
You must be signed in to change notification settings - Fork 50
/
Cargo.toml
71 lines (61 loc) · 1.83 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
[package]
name = "kayak_ui"
description = "A UI library built using the bevy game engine!"
version = "0.5.0"
edition = "2021"
resolver = "2"
authors = ["John Mitchell"]
homepage = "https://github.com/StarArawn/kayak_ui"
repository = "https://github.com/StarArawn/kayak_ui"
license-file = "LICENSE"
exclude = ["assets/*", "screenshots/*", "book"]
[workspace]
members = ["kayak_ui_macros", "kayak_font"]
[features]
svg = ["dep:bevy_svg"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = { version = "0.13", default-features = false, features = ["bevy_render", "bevy_asset", "bevy_core_pipeline"] }
bevy_svg = { git = "https://github.com/arnfaldur/bevy_svg", rev="53a53e5af050a7b5b236068546be46c5729674e3", default-features = false, optional = true }
bitflags = "1.3.2"
bytemuck = "1.12"
dashmap = "5.4"
fancy-regex = "0.11.0"
indexmap = "1.9"
instant = "0.1"
interpolation = { version = "0.2" }
kayak_font = { path = "./kayak_font", version = "0.5" }
kayak_ui_macros = { path = "./kayak_ui_macros", version = "0.5" }
log = "0.4"
morphorm = "0.3"
reorder = "2.1"
resources = "1.1"
usvg = "0.27"
uuid = { version = "1.3", features = ["v4"] }
smol_str = {version = "0.2", default-features = false}
[dev-dependencies]
fastrand = "1.8"
bevy-inspector-egui = "0.23"
bevy = { version = "0.13", default-features = true }
[[example]]
name = "tabs"
path = "examples/tabs/tabs.rs"
[[example]]
name = "todo"
path = "examples/todo/todo.rs"
[[example]]
name = "svg"
path = "examples/svg.rs"
test = false
doc = false
bench = false
required-features = ["svg"]
[[example]]
name = "accordion"
path = "examples/accordion.rs"
test = false
doc = false
bench = false
required-features = ["svg"]
[package.metadata.docs.rs]
features = ["bevy/x11"]