-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
38 lines (32 loc) · 1.22 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
[package]
name = "bevy_quill"
version = "0.1.7"
edition = "2021"
description = "A reactive UI framework for Bevy"
license = "MIT OR Apache-2.0"
repository = "https://github.com/viridia/quill"
keywords = ["bevy", "ui", "reactive"]
# homepage
# readme
[workspace]
members = ["crates/bevy_mod_stylebuilder", "crates/bevy_quill_core"]
[features]
# default = ["verbose"]
verbose = [] # Enable verbose logging
[workspace.dependencies]
bevy = "0.15.0"
bevy_mod_stylebuilder = { path = "crates/bevy_mod_stylebuilder", version = "0.1.3" }
#bevy_mod_picking = { version = "0.20.1", default-features = false }
bevy_quill_core = { path = "crates/bevy_quill_core", version = "0.1.3" }
#bevy_quill_obsidian = { path = "crates/bevy_quill_obsidian", version = "0.1.3" }
#bevy_quill_obsidian_inspect = { path = "crates/bevy_quill_obsidian_inspect", version = "0.1.2" }
#bevy_quill_obsidian_graph = { path = "crates/bevy_quill_obsidian_graph", version = "0.1.2" }
#bevy_quill_overlays = { path = "crates/bevy_quill_overlays", version = "0.1.2" }
[dependencies]
bevy = { workspace = true }
bevy_quill_core = { workspace = true }
bevy_mod_stylebuilder = { workspace = true }
impl-trait-for-tuples = "0.2.2"
smallvec = "1.13.2"
[lints.clippy]
type_complexity = "allow"