forked from tasgon/bevy_iced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 820 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
[package]
name = "bevy_iced"
version = "0.5.0"
edition = "2021"
description = "Iced integration for Bevy"
authors = ["tasgon <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["bevy", "iced", "ui", "game", "gui"]
homepage = "https://github.com/tasgon/bevy_iced"
repository = "https://github.com/tasgon/bevy_iced"
documentation = "https://docs.rs/bevy_iced"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy_app = "0.13"
bevy_derive = "0.13"
bevy_ecs = "0.13"
bevy_input = "0.13"
bevy_math = "0.13"
bevy_render = "0.13"
bevy_utils = "0.13"
bevy_window = "0.13"
iced_core = "0.12"
iced_runtime = "0.12"
iced_wgpu = "0.12"
iced_widget = "0.12"
iced_renderer = { version = "0.12", features = ["wgpu"] }
[dev-dependencies]
bevy = "0.13"
rand = "0.8"