-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
49 lines (39 loc) · 1.1 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
[package]
name = "belly"
version = { workspace = true }
edition = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"crates/belly_cli",
"crates/belly_core",
"crates/belly_macro",
"crates/belly_widgets",
"crates/bevy_stylebox",
"crates/tagstr",
]
[workspace.package]
edition = "2021"
version = "0.4.0"
[workspace.dependencies]
bevy = { version = "0.13" }
itertools = { version = "0.10.5" }
tagstr = { path = "crates/tagstr" }
belly_macro = { path = "crates/belly_macro" }
belly_core = { path = "crates/belly_core" }
belly_widgets = { path = "crates/belly_widgets" }
bevy_stylebox = { path = "crates/bevy_stylebox" }
[dependencies]
bevy = { workspace = true }
embed-doc-image = "0.1"
tagstr = { workspace = true }
belly_macro = { workspace = true }
belly_core = { workspace = true }
belly_widgets = { workspace = true }
[[example]]
name = "text_input"
path = "examples/text-input.rs"
[[example]]
name = "stylebox-panel"
path = "examples/stylebox-panel.rs"
required-features = ["bevy/basis-universal"]