-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
37 lines (28 loc) · 944 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
[package]
name = "ui4"
version = "0.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A reactive vdom-free ui library for the bevy game engine"
repository = "https://github.com/TheRawMeatball/ui4"
keywords = ["ui", "bevy"]
[features]
default = []
nightly = []
[dependencies]
ui4-macros = { path = "./ui4-macros", version = "0.1.0" }
# used for parallel collection of updatefunc
dashmap = "5"
ahash = "0.7"
# tracked vec
crossbeam-channel = "0.5.1"
# layout
morphorm = "0.3" # core layout algorithm
derive_more = "0.99.16" # used for Deref impls on layout elements, and in examples
concat-idents = "1.1.3" # used in generating impls
# various optimizations
smallvec = "1"
# mapping mutex
parking_lot = "0.11.2"
bevy = { version = "0.6", default-features = false, features = ["render"] }
bevy-inspector-egui = { git = "https://github.com/jakobhellermann/bevy-inspector-egui", rev = "f02c9d8", default-features = false }