-
Notifications
You must be signed in to change notification settings - Fork 75
/
Cargo.toml
34 lines (30 loc) · 1005 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
[package]
name = "egui-macroquad"
version = "0.16.0"
authors = ["Ilya Sheprut <[email protected]>"]
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.25.0"
# use a fork of egui-miniquad that's been updated to support egui 0.25.0 until https://github.com/not-fl3/egui-miniquad/pull/65 is merged
egui-miniquad = { git = 'https://github.com/caspark/egui-miniquad.git', rev="4fb6d4c4f3c1ed2114c5cf80f8ce967f5301e318" }
macroquad = { version="0.4.4", default-features=false }
[features]
default = ["audio"]
audio = ["macroquad/audio"]
[dev-dependencies]
egui_demo_lib = "0.25.0"
[profile.release]
opt-level = 2