forked from optozorax/egui-macroquad
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
33 lines (29 loc) · 878 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 = "egui-macroquad"
version = "0.15.0"
authors = ["Ilya Sheprut <optozorax@gmail.com>"]
edition = "2021"
license = "MIT/Apache-2.0"
homepage = "https://github.com/optozorax/egui-macroquad"
repository = "https://github.com/optozorax/egui-macroquad"
description = "Bindings between egui and macroquad"
readme="README.md"
categories = ["gui", "game-development"]
keywords = ["gui", "imgui", "immediate", "portable", "gamedev"]
include = [
"LICENSE-APACHE",
"LICENSE-MIT",
"**/*.rs",
"Cargo.toml",
]
[dependencies]
egui = "0.22.0"
egui-miniquad = { git = "https://github.com/not-fl3/egui-miniquad.git", branch = "miniquad_0.4" }
macroquad = { git = "https://github.com/Bytekeeper/macroquad.git", default-features=false }
[features]
default = ["audio"]
audio = ["macroquad/audio"]
[dev-dependencies]
egui_demo_lib = "0.21.0"
[profile.release]
opt-level = 2