forked from viridia/quill_v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (31 loc) · 913 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
[workspace]
members = [
"crates/bevy_color",
"crates/bevy_egret",
"crates/bevy_grackle",
"crates/bevy_tabindex",
]
[package]
name = "bevy_quill"
version = "0.1.1"
edition = "2021"
license-file = "LICENSE"
description = "A reactive UI framework for Bevy"
homepage = "https://github.com/viridia/quill"
repository = "https://github.com/viridia/quill"
readme = "README.md"
keywords = ["bevy", "game", "gui"]
categories = ["gui", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.13"
bevy_mod_picking = "0.19"
impl-trait-for-tuples = "0.2.2"
static_init = "1.0.3"
winnow = "0.6.6"
[dev-dependencies]
bevy_grackle = { path = "crates/bevy_grackle" }
bevy_tabindex = { path = "crates/bevy_tabindex" }
# Enable max optimizations for dependencies, but not for our code:
[profile.dev.package."*"]
opt-level = 3