Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to egui 0.27 and use egui_miniquad master git #46

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui-macroquad"
version = "0.16.0"
version = "0.16.1"
authors = ["Ilya Sheprut <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
Expand All @@ -18,17 +18,17 @@ include = [
]

[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 }
egui = "0.29.0"
egui-miniquad = { git = 'https://github.com/not-fl3/egui-miniquad.git', branch="master" }
macroquad = { version="0.4.5", default-features=false }


[features]
default = ["audio"]
audio = ["macroquad/audio"]

[dev-dependencies]
egui_demo_lib = "0.25.0"
egui_demo_lib = "0.29.0"

[profile.release]
opt-level = 2